Skip to content

Commit e655049

Browse files
committed
Move .gemspec to rdf-spec.gemspec.
1 parent 9e8de8c commit e655049

3 files changed

Lines changed: 35 additions & 36 deletions

File tree

.gemspec

Lines changed: 0 additions & 34 deletions
This file was deleted.

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "http://rubygems.org"
22

3-
gemspec :name => ""
3+
gemspec
44

55
gem "rdf", :git => "git://github.com/ruby-rdf/rdf.git", :branch => "develop"
66

rdf-spec.gemspec

Lines changed: 0 additions & 1 deletion
This file was deleted.

rdf-spec.gemspec

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/usr/bin/env ruby -rubygems
2+
# -*- encoding: utf-8 -*-
3+
4+
Gem::Specification.new do |gem|
5+
gem.version = File.read('VERSION').chomp
6+
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
7+
8+
gem.name = 'rdf-spec'
9+
gem.homepage = 'http://ruby-rdf.github.com/rdf-spec/'
10+
gem.license = 'Public Domain' if gem.respond_to?(:license=)
11+
gem.summary = 'RSpec extensions for RDF.rb.'
12+
gem.description = 'RDF.rb plugin that provides RSpec matchers and shared examples for RDF objects.'
13+
gem.rubyforge_project = 'rdf'
14+
15+
gem.authors = ['Arto Bendiken', 'Ben Lavender', 'Gregg Kellogg']
16+
gem.email = 'public-rdf-ruby@w3.org'
17+
18+
gem.platform = Gem::Platform::RUBY
19+
gem.files = %w(AUTHORS CREDITS README UNLICENSE VERSION) + Dir.glob('etc/*') + Dir.glob('lib/**/*.rb') + Dir.glob('spec/*.rb')
20+
gem.bindir = %q(bin)
21+
gem.executables = %w()
22+
gem.default_executable = gem.executables.first
23+
gem.require_paths = %w(lib)
24+
gem.extensions = %w()
25+
gem.test_files = %w()
26+
gem.has_rdoc = false
27+
28+
gem.required_ruby_version = '>= 1.9.2'
29+
gem.requirements = []
30+
gem.add_development_dependency 'rdf', '~> 1.1'
31+
gem.add_runtime_dependency 'rspec', '>= 2.14'
32+
gem.add_development_dependency 'yard' , '>= 0.8'
33+
gem.post_install_message = nil
34+
end

0 commit comments

Comments
 (0)