Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bjeanes-holidays

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bjeanes-holidays

  • 0.9.5
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

= 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 .tgz 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

By Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-08.

Made on Vancouver Island.

FAQs

Package last updated on 12 Jan 2010

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc