GithubHelp home page GithubHelp logo

isabella232 / holidays-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from harvesthq/holidays

0.0 0.0 0.0 753 KB

A fork of the Holidays gem to adjust US statutory holidays to those we observe

License: Other

Ruby 100.00%

holidays-1's Introduction

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

The Holidays gem is tested on Ruby 1.8.7, 1.9.2, 1.9.3, 2.0.0, 2.1.0, REE and JRuby.

Time zones

Time zones are ignored. This library assumes that all dates are within the same time zone.

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

How to contribute

To make changes to any of the definitions, edit the YAML files only.

Tests are also added at the end of the YAML files. Please add tests, it makes the pull requests go around.

After you're satisfied with the YAML file, edit the index.yaml file, run rake generate, which will generate the Ruby files that make up the actual code as well as the tests. Then run rake test.

It is also very appreciated if documentation is attached to the pull request. A simple Wikipedia or government link referencing the change would be perfect.

Credits and code

Started by Alex Dunae (e-mail 'code' at the same domain), 2007-12. Maintained by Hana Wang, 2013

On Twitter: @MrMrBug.

Made on Vancouver Island. Maintained in the way more beautiful Houston, TX.

holidays-1's People

Contributors

adamstrickland avatar alexdunae avatar bjeanes avatar boblin avatar chelo avatar dceddia avatar ddimitriadis avatar dgrambow avatar eheikes avatar fabiokr avatar ghiculescu avatar gregoriokusowski avatar hahahana avatar iterion avatar jak78 avatar jg avatar lecterror avatar mike-gilbert avatar mipereira avatar mirelon avatar paulrbr avatar pmor avatar qw3r avatar samzurcher avatar sonnym avatar spap avatar sugi avatar willbarrett avatar yoka avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.