forked from pius/rdf-mongo
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrdf-mongo.gemspec
More file actions
executable file
·44 lines (37 loc) · 1.96 KB
/
rdf-mongo.gemspec
File metadata and controls
executable file
·44 lines (37 loc) · 1.96 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env ruby -rubygems
# -*- encoding: utf-8 -*-
begin
RUBY_ENGINE
rescue NameError
RUBY_ENGINE = "ruby" # Not defined in Ruby 1.8.7
end
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'rdf-mongo'
gem.homepage = 'https://github.com/ruby-rdf/rdf-mongo'
gem.license = 'MIT' if gem.respond_to?(:license=)
gem.summary = 'A storage adapter for integrating MongoDB and rdf.rb, a Ruby library for working with Resource Description Framework (RDF) data.'
gem.description = 'rdf-mongo is a storage adapter for integrating MongoDB and rdf.rb, a Ruby library for working with Resource Description Framework (RDF) data.'
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/rdf-mongo",
"bug_tracker_uri" => "https://github.com/ruby-rdf/rdf-mongo/issues",
"homepage_uri" => "https://github.com/ruby-rdf/rdf-mongo",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/rdf-mongo",
}
gem.authors = ['Pius Uzamere', 'Gregg Kellogg']
gem.email = ['pius@alum.mit.edu', 'gregg@greggkellogg.net']
gem.platform = Gem::Platform::RUBY
gem.files = %w(LICENSE VERSION README.md) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.test_files = Dir.glob('spec/*.spec')
gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '>= 3.2'
gem.add_runtime_dependency 'mongo', '~> 2.17'
gem.add_development_dependency 'rdf-spec', '>= 3.2'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rspec-its', '~> 1.3'
gem.add_development_dependency 'yard', '~> 0.9'
end