forked from ontoportal/ontologies_api_ruby_client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ontologies_api_client.gemspec
26 lines (24 loc) · 1.27 KB
/
ontologies_api_client.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
Gem::Specification.new do |gem|
gem.authors = ["Paul R Alexander"]
gem.email = ["[email protected]"]
gem.description = %q{Models and serializers for ontologies and related artifacts backed by 4store}
gem.summary = %q{This library can be used for interacting with a 4store instance that stores NCBO-based ontology information. Models in the library are based on Goo. Serializers support RDF serialization as Rack Middleware and automatic generation of hypermedia links.}
gem.homepage = "https://github.com/ncbo/ontologies_api_ruby_client"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ontologies_api_client"
gem.require_paths = ["lib"]
gem.version = "2.2.0"
gem.add_dependency('activesupport', '~> 7.0.4')
gem.add_dependency('excon','0.112.0')
gem.add_dependency('faraday')
gem.add_dependency('faraday-excon', '~> 2.0.0')
gem.add_dependency('faraday-multipart')
gem.add_dependency('lz4-ruby')
gem.add_dependency('multi_json')
gem.add_dependency('oj')
gem.add_dependency('parallel')
gem.add_dependency('request_store')
gem.add_dependency('spawnling', '2.1.5')
end