diff --git a/CHANGELOG b/CHANGELOG index 173c7ed..280295b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/LICENSE b/LICENSE index 10635cd..c5834ab 100644 --- a/LICENSE +++ b/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 diff --git a/README b/README index c8d8acd..ceeb60a 100644 --- a/README +++ b/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. \ No newline at end of file diff --git a/lib/holidays.rb b/lib/holidays.rb index 7491a7c..5fcec70 100644 --- a/lib/holidays.rb +++ b/lib/holidays.rb @@ -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 = {} diff --git a/rakefile.rb b/rakefile.rb index c4a314d..2dd1753 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.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']