forked from ruby-marc/ruby-marc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarc.gemspec
23 lines (20 loc) · 976 Bytes
/
marc.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.join(File.dirname(__FILE__), "lib/marc/version")
Gem::Specification.new do |s|
s.name = "marc"
s.version = MARC::VERSION
s.author = "Ed Summers"
s.email = "ehs@pobox.com"
s.homepage = "https://github.com/ruby-marc/ruby-marc/"
s.summary = "A ruby library for working with Machine Readable Cataloging"
s.license = "MIT"
s.required_ruby_version = ">= 1.8.6"
s.authors = ["Kevin Clarke", "Bill Dueber", "William Groppe", "Jonathan Rochkind", "Ross Singer", "Ed Summers", "Chris Beer"]
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_development_dependency "standard", "~>1.0"
s.add_dependency "scrub_rb", ">= 1.0.1", "< 2" # backport for ruby 2.1 String#scrub
s.add_dependency "unf" # unicode normalization
s.add_dependency "rexml" # rexml was unbundled from the stdlib in ruby 3
end