A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!
 
 
Go to file
Denis Knauf 87a6702a28 Umlauts in at.yaml 2012-01-17 14:14:03 +01:00
data Umlauts in at.yaml 2012-01-17 14:14:03 +01:00
lib Version bump 2011-10-19 12:02:41 -07:00
test Add Liechtenstein holiday defs -- mercy vielmal: Bernhard Furtmueller 2011-10-18 16:18:05 -07:00
.gitignore Bundler/rdoc updates 2011-09-14 11:33:46 -07:00
.travis.yml Travis CI config 2011-09-14 10:39:23 -07:00
CHANGELOG Version bump 2011-10-19 12:02:41 -07:00
Gemfile Version bump 2011-10-19 12:02:41 -07:00
LICENSE Version bump 2011-09-02 15:24:38 -07:00
README.rdoc Version bump 2011-05-13 14:17:53 -07:00
REFERENCES Updated docs 2007-12-19 22:16:30 +00:00
holidays.gemspec Regenerate gemspec for version 1.0.4 2011-10-19 12:02:59 -07:00
rakefile.rb Version bump 2011-10-19 12:02:41 -07: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 RubyGems:
 
  gem install holidays
 
=== 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
 
* Source: https://github.com/alexdunae/holidays
* Docs: http://rdoc.info/github/alexdunae/holidays/master/frames
* Contributors: https://github.com/alexdunae/holidays/contributors
 
Started by Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-11.
 
Made on Vancouver Island.