-
Notifications
You must be signed in to change notification settings - Fork 2
/
ro-bundle.gemspec
43 lines (38 loc) · 1.85 KB
/
ro-bundle.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
#------------------------------------------------------------------------------
# Copyright (c) 2014, 2015, 2018 The University of Manchester, UK.
#
# BSD Licenced. See LICENCE.rdoc for details.
#
# Author: Robert Haines
#------------------------------------------------------------------------------
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ro-bundle/version'
Gem::Specification.new do |spec|
spec.name = "ro-bundle"
spec.version = ROBundle::VERSION
spec.authors = ["Robert Haines", "Stuart Owen", "Finn Bacall"]
spec.email = ["support@mygrid.org.uk"]
spec.summary = "This library provides an API for manipulating "\
"Research Object (RO) bundles."
spec.description = "This library provides an API for manipulating "\
"Research Object (RO) bundles. The RO bundle specification can be found "\
"at https://w3id.org/bundle/."
spec.homepage = "http://www.researchobject.org/"
spec.license = "BSD-3-Clause"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extra_rdoc_files = [ "Changes.rdoc", "Licence.rdoc", "ReadMe.rdoc" ]
spec.rdoc_options = [ "-N", "--tab-width=2", "--main=ReadMe.rdoc" ]
spec.required_ruby_version = ">= 2.6.0"
spec.add_development_dependency "rake", "~> 12.3.3"
spec.add_development_dependency "rdoc", "~> 6.3.1"
spec.add_development_dependency "test-unit", "~> 3.0"
spec.add_development_dependency "coveralls", "~> 0.8.23"
spec.add_runtime_dependency "ucf", "~> 2.0.2"
spec.add_runtime_dependency "json", "~> 2.3.0"
spec.add_runtime_dependency "uuid", "~> 2.3"
spec.add_runtime_dependency "addressable", "~> 2.8.0"
end