forked from ruby-marc/ruby-marc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarc.gemspec
More file actions
27 lines (23 loc) · 1.03 KB
/
marc.gemspec
File metadata and controls
27 lines (23 loc) · 1.03 KB
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
# -*- encoding: utf-8 -*-
require File.join(File.dirname(__FILE__), "lib/marc/version")
spec = 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.platform = Gem::Platform::RUBY
s.summary = 'A ruby library for working with Machine Readable Cataloging'
s.license = "MIT"
s.files = Dir.glob("{lib,test}/**/*") + ["Rakefile", "README.md", "Changes", "LICENSE"]
s.require_path = 'lib'
s.autorequire = 'marc'
s.has_rdoc = true
s.required_ruby_version = '>= 1.8.6'
s.authors = ["Kevin Clarke", "Bill Dueber", "William Groppe", "Jonathan Rochkind", "Ross Singer", "Ed Summers"]
s.test_file = 'test/ts_marc.rb'
s.bindir = 'bin'
s.add_dependency "ensure_valid_encoding"
s.add_dependency "scrub_rb", ">= 1.0.1", "< 2" # backport for ruby 2.1 String#scrub
s.add_dependency "unf" # unicode normalization
end