forked from ruby-rdf/rdf-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrdf-mongo.gemspec
executable file
·48 lines (39 loc) · 1.94 KB
/
rdf-mongo.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/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 = 'http://ruby-rdf.github.com/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.authors = ['Pius Uzamere', 'Gregg Kellogg']
gem.email = ['[email protected]', '[email protected]']
gem.platform = Gem::Platform::RUBY
gem.files = %w(LICENSE VERSION README.md) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = Dir.glob('spec/*.spec')
gem.has_rdoc = false
gem.required_ruby_version = '>= 2.2.2'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 2.0'
gem.add_runtime_dependency 'mongo', '~> 2.2'
gem.add_development_dependency 'rdf-spec', '~> 2.0'
gem.add_development_dependency 'rspec', '~> 3.4'
gem.add_development_dependency 'rspec-its', '~> 1.2'
gem.add_development_dependency 'yard', '~> 0.8'
# Rubinius has it's own dependencies
if RUBY_ENGINE == "rbx" && RUBY_VERSION >= "2.1.0"
gem.add_runtime_dependency "rubysl-base64"
gem.add_runtime_dependency "rubysl-digest"
gem.add_development_dependency "rubysl-prettyprint"
end
gem.post_install_message = "Have fun! :)"
end