-
Notifications
You must be signed in to change notification settings - Fork 1
/
ld4l-open_annotation_rdf.gemspec
36 lines (30 loc) · 1.3 KB
/
ld4l-open_annotation_rdf.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ld4l/open_annotation_rdf/version'
Gem::Specification.new do |spec|
spec.name = "ld4l-open_annotation_rdf"
spec.version = LD4L::OpenAnnotationRDF::VERSION
spec.authors = ["E. Lynette Rayle"]
spec.email = ["[email protected]"]
spec.platform = Gem::Platform::RUBY
spec.summary = %q{OpenAnnotation RDF models.}
spec.description = %q{LD4L Open Annotation RDF provides tools for modeling a annotations based on the Open Annotation ontology and persisting to a triplestore.}
spec.homepage = "https://github.com/ld4l/open_annotation_rdf"
spec.license = "APACHE2"
spec.required_ruby_version = '>= 2.1'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.add_dependency('rdf')
spec.add_dependency('active-triples')
spec.add_dependency('active_triples-local_name')
spec.add_dependency('ld4l-foaf_rdf')
spec.add_development_dependency('rdoc')
spec.add_development_dependency('rspec')
spec.add_development_dependency('coveralls')
spec.add_development_dependency('webmock')
spec.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
end