From 89cccd81a45274e8b8252de9b49de8aab281e0fc Mon Sep 17 00:00:00 2001 From: Alex Dunae Date: Tue, 30 Dec 2008 12:15:06 -0800 Subject: [PATCH] GitHub gemspec --- holidays.gemspec | 14 ++++++++++++++ rakefile.rb | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 holidays.gemspec diff --git a/holidays.gemspec b/holidays.gemspec new file mode 100644 index 0000000..69566bc --- /dev/null +++ b/holidays.gemspec @@ -0,0 +1,14 @@ +Gem::Specification.new do |s| + s.name = "holidays" + s.version = "0.9.4" + s.date = "2008-12-30" + s.summary = " A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!" + s.email = "code@dunae.ca" + s.homepage = "http://code.dunae.ca/holidays" + s.description = " A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!" + s.has_rdoc = true + s.authors = ["Alex Dunae"] + s.files = Dir.glob("{data,lib,test}/**/*") + %w(README.rdoc LICENSE CHANGELOG REFERENCES rakefile.rb holidays.gemspec) + s.test_files = Dir.glob("{test}/**/*") + s.extra_rdoc_files = ['README.rdoc', 'data/SYNTAX', 'lib/holidays/MANIFEST', 'REFERENCES', 'CHANGELOG', 'LICENSE'] +end diff --git a/rakefile.rb b/rakefile.rb index 841af08..a82ac3a 100644 --- a/rakefile.rb +++ b/rakefile.rb @@ -46,7 +46,7 @@ end spec = Gem::Specification.new do |s| s.name = 'holidays' - s.version = '0.9.3' + s.version = '0.9.4' s.author = 'Alex Dunae' s.homepage = 'http://code.dunae.ca/holidays' s.platform = Gem::Platform::RUBY