forked from openurl/openurl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenurl.gemspec
More file actions
29 lines (23 loc) · 886 Bytes
/
openurl.gemspec
File metadata and controls
29 lines (23 loc) · 886 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{openurl}
s.version = "1.0.0"
s.authors = ["Jonathan Rochkind", "Ross Singer"]
s.email = ["rochkind@jhu.edu", "rossfsinger@gmail.com"]
s.extra_rdoc_files = [
"README.md"
]
s.files = Dir.glob("{lib,test}/**/*")
s.test_files = Dir.glob("test/**/*")
s.homepage = %q{https://github.com/openurl/openurl}
s.require_paths = ["lib"]
s.summary = %q{a Ruby library to create, parse and use NISO Z39.88 OpenURLs}
s.add_development_dependency "bundler", "~> 1.6"
s.add_development_dependency "rake"
# currently needs 'marc' becuase of it's inclusion
# of the marc referent format, sorry.Should make
# this optional.
s.add_dependency "marc"
# backfill of String#scrub -- for encoding safety in reading/parsing kev -- in ruby pre 2.1
s.add_dependency "scrub_rb", "~> 1.0"
end