47 lines
811 B
YAML
47 lines
811 B
YAML
|
# Ireland holiday definitions for the Ruby Holiday gem.
|
||
|
#
|
||
|
# Updated: 2008-11-22.
|
||
|
# Source: http://en.wikipedia.org/wiki/Public_holidays_in_the_Republic_of_Ireland
|
||
|
---
|
||
|
months:
|
||
|
0:
|
||
|
- name: Easter Monday
|
||
|
regions: [ie]
|
||
|
function: lambda { |year| easter(year)+1 }
|
||
|
1:
|
||
|
- name: New Year's Day
|
||
|
regions: [ie]
|
||
|
mday: 1
|
||
|
3:
|
||
|
- name: St. Patrick's Day
|
||
|
regions: [ie]
|
||
|
mday: 17
|
||
|
5:
|
||
|
- name: May Day
|
||
|
regions: [ie]
|
||
|
week: 1
|
||
|
wday: 1
|
||
|
6:
|
||
|
- name: Labour Day/May Day
|
||
|
regions: [ie]
|
||
|
week: 1
|
||
|
wday: 1
|
||
|
8:
|
||
|
- name: August Holiday
|
||
|
regions: [ie]
|
||
|
week: 1
|
||
|
wday: 1
|
||
|
10:
|
||
|
- name: October Holiday
|
||
|
regions: [ie]
|
||
|
week: -1
|
||
|
wday: 1
|
||
|
12:
|
||
|
- name: Christmas Day
|
||
|
regions: [ie]
|
||
|
mday: 25
|
||
|
- name: St. Stephen's Day
|
||
|
regions: [ie]
|
||
|
mday: 26
|
||
|
|