-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontologies_linked_data.gemspec
37 lines (32 loc) · 1.52 KB
/
ontologies_linked_data.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ontologies_linked_data/version', __FILE__)
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_linked_data"
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_linked_data"
gem.require_paths = ["lib"]
gem.version = LinkedData::VERSION
gem.add_dependency("goo")
gem.add_dependency("json")
gem.add_dependency("multi_json")
gem.add_dependency("oj")
gem.add_dependency("bcrypt")
gem.add_dependency("rack")
gem.add_dependency("rack-test")
gem.add_dependency("rubyzip")
gem.add_dependency("libxml-ruby")
gem.add_dependency("activesupport")
gem.add_dependency("rsolr")
gem.add_dependency("pony")
gem.add_dependency("omni_logger")
gem.add_dependency("ncbo_resource_index")
gem.add_dependency("oauth2")
gem.add_development_dependency("email_spec")
# gem.executables = %w()
end