Added rakefile to gem spec and upped version to 0.9.2
This commit is contained in:
parent
940e5d6df1
commit
206f610cc9
5 changed files with 8 additions and 5 deletions
|
@ -1,5 +1,8 @@
|
|||
= Ruby Holidays Gem CHANGELOG
|
||||
|
||||
== 0.9.2
|
||||
* Included rakefile in Gem (thank you James Herdman).
|
||||
|
||||
== 0.9.1
|
||||
* au.yaml was being included incorrectly in US holiday definitions. Thanks to Glenn Vanderburg (http://vanderburg.org/) for the fix.
|
||||
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
==== Ruby Holidays Gem License
|
||||
|
||||
Copyright (c) 2007 Alex Dunae
|
||||
Copyright (c) 2007-08 Alex Dunae
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
README
2
README
|
@ -71,6 +71,6 @@ Lookup Canada Day in different regions.
|
|||
* Source: http://code.dunae.ca/svn/holidays
|
||||
* Docs: http://code.dunae.ca/holidays/doc
|
||||
|
||||
By Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007.
|
||||
By Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-08.
|
||||
|
||||
Made on Vancouver Island.
|
|
@ -42,7 +42,7 @@ module Holidays
|
|||
# Exception thrown when an unknown region is requested.
|
||||
class UnkownRegionError < ArgumentError; end
|
||||
|
||||
VERSION = '0.9.0'
|
||||
VERSION = '0.9.2'
|
||||
|
||||
@@regions = []
|
||||
@@holidays_by_month = {}
|
||||
|
|
|
@ -46,7 +46,7 @@ end
|
|||
|
||||
spec = Gem::Specification.new do |s|
|
||||
s.name = 'holidays'
|
||||
s.version = '0.9.1'
|
||||
s.version = '0.9.2'
|
||||
s.author = 'Alex Dunae'
|
||||
s.homepage = 'http://code.dunae.ca/holidays'
|
||||
s.platform = Gem::Platform::RUBY
|
||||
|
@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
|
|||
A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!
|
||||
EOF
|
||||
s.summary = 'A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!'
|
||||
s.files = FileList["{lib}/**/*", "{data}/**/*"].to_a
|
||||
s.files = FileList["{lib}/**/*", "{data}/**/*", "*.rb"].to_a
|
||||
s.test_files = FileList['test/defs/test*.rb'].exclude('test_helper.rb')
|
||||
s.has_rdoc = true
|
||||
s.extra_rdoc_files = ['README', 'data/SYNTAX', 'lib/holidays/MANIFEST', 'REFERENCES', 'CHANGELOG', 'LICENSE']
|
||||
|
|
Loading…
Reference in a new issue