A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!
 
 
Go to file
Rowan Crawford debbf6d411 updated gemspec 2010-05-01 22:26:02 +12:00
data Update tests to give more useful information when they fail. 2010-04-29 00:50:16 +12:00
lib Sort holidays in ascending date so we can reason on a collection of holidays a bit better 2010-05-01 22:25:09 +12:00
test Sort holidays in ascending date so we can reason on a collection of holidays a bit better 2010-05-01 22:25:09 +12:00
.gitignore ignore netbeans stuff 2010-03-29 08:51:32 +13:00
CHANGELOG Update changelog pre v1.0.0 2010-03-04 00:48:11 -08:00
LICENSE Added rakefile to gem spec and upped version to 0.9.2 2008-07-24 03:50:04 +00:00
README.rdoc General housekeeping 2010-03-04 00:08:49 -08:00
REFERENCES Updated docs 2007-12-19 22:16:30 +00:00
VERSION Version bump to 0.9.8 2010-05-01 22:25:29 +12:00
holidays.gemspec Cleanup gemspec 2010-03-04 00:08:22 -08:00
rakefile.rb Going to version 0.9.7 to fix issue with include :gb_ and so forth. 2010-05-01 22:09:09 +12:00
wombleton-holidays.gemspec updated gemspec 2010-05-01 22:26:02 +12:00

README.rdoc

= Ruby Holidays Gem
  
A set of functions to deal with holidays in Ruby.
 
Extends Ruby's built-in Date class and supports custom holiday definition lists.
 
=== Installation
 
To install the gem from GitHub:
 
    gem sources -a http://gems.github.com
    gem install alexdunae-holidays
 
Or, download the source <tt>.tgz</tt> file from http://rubyforge.org/holidays and
extract it somewhere in your include path.
 
=== Examples
 
For more information, see the notes at the top of the Holidays module.
 
==== Using the Holidays class
Get all holidays on April 25, 2008 in Australia.
  date = Date.civil(2008,4,25)
 
  Holidays.on(date, :au)
  => [{:name => 'ANZAC Day',...}]
 
Get holidays that are observed on July 2, 2007 in British Columbia, Canada.
  date = Date.civil(2007,7,2)
 
  Holidays.on(date, :ca_bc, :observed)
  => [{:name => 'Canada Day',...}]
 
Get all holidays in July, 2008 in Canada and the US.
  from = Date.civil(2008,7,1)
  to = Date.civil(2008,7,31)
 
  Holidays.between(from, to, :ca, :us)
  => [{:name => 'Canada Day',...}
      {:name => 'Independence Day',...}]
 
Get informal holidays in February.
  from = Date.civil(2008,2,1)
  to = Date.civil(2008,2,15)
 
  Holidays.between(from, to)
  => [{:name => 'Valentine\'s Day',...}]
 
 
==== Extending Ruby's Date class
Check which holidays occur in Iceland on January 1, 2008.
  d = Date.civil(2008,7,1)
 
  d.holidays(:is)
  => [{:name => 'Nýársdagur'}...]
 
Lookup Canada Day in different regions.
  d = Date.civil(2008,7,1)
 
  d.holiday?(:ca) # Canada
  => true
 
  d.holiday?(:ca_bc) # British Columbia, Canada
  => true
 
  d.holiday?(:fr) # France
  => false
 
=== Credits and code
 
* Project page: http://code.dunae.ca/holidays
* Source: http://github.com/alexdunae/holidays
* Docs: http://code.dunae.ca/holidays/doc
 
By Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-10.
 
Made on Vancouver Island.