-
Notifications
You must be signed in to change notification settings - Fork 11
/
rdf-sesame.gemspec
27 lines (23 loc) · 1.18 KB
/
rdf-sesame.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'rdf-sesame'
gem.homepage = 'http://rdf.rubyforge.org/sesame/'
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.summary = 'Sesame 2.0 adapter for RDF.rb.'
gem.description = 'RDF.rb plugin providing a Sesame 2.0 storage adapter.'
gem.rubyforge_project = 'rdf'
gem.authors = ['Arto Bendiken', 'Aymeric Brisse']
gem.email = '[email protected]'
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CREDITS README UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.required_ruby_version = '>= 2.4'
gem.add_runtime_dependency 'rdf', '~> 3.0'
gem.add_runtime_dependency 'addressable', '~> 2.3'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'rspec', '~> 3'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'rdf-spec', '~> 3.0'
gem.post_install_message = nil
end