forked from ruby-marc/ruby-marc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.rb
More file actions
22 lines (21 loc) · 771 Bytes
/
version.rb
File metadata and controls
22 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Version
RUBY_MARC_VERSION = '0.4.3'
SPEC = Gem::Specification.new do |s|
s.name = 'marc'
s.version = RUBY_MARC_VERSION
s.author = 'Ed Summers'
s.email = 'ehs@pobox.com'
s.homepage = 'http://marc.rubyforge.org/'
s.platform = Gem::Platform::RUBY
s.summary = 'A ruby library for working with Machine Readable Cataloging'
s.files = Dir.glob("{lib,test}/**/*") + ["Rakefile", "README", "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", "Ross Singer", "Ed Summers"]
s.test_file = 'test/ts_marc.rb'
s.bindir = 'bin'
end
end