forked from holidays/definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ph.yaml
130 lines (126 loc) · 2.42 KB
/
ph.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Philippines holiday definitions for the Ruby Holiday gem.
#
# Updated: 2015-03-25 by itsmechlark
# Sources:
# - http://www.gov.ph/2014/07/23/list-of-nationwide-holidays-for-2015/
# - http://www.timeanddate.com/holidays/philippines/
---
months:
0:
- name: Maundy Thursday
regions: [ph]
function: easter(year)
function_modifier: -3
- name: Good Friday
regions: [ph]
function: easter(year)
function_modifier: -2
- name: Holy Saturday
regions: [ph]
function: easter(year)
function_modifier: -1
- name: Easter Sunday
regions: [ph]
function: easter(year)
1:
- name: New Year’s Day
regions: [ph]
mday: 1
2:
- name: People Power Anniversary
regions: [ph]
mday: 25
type: informal
4:
- name: The Day of Valor
regions: [ph]
mday: 9
5:
- name: Labor Day
regions: [ph]
mday: 1
6:
- name: Independence Day
regions: [ph]
mday: 12
8:
- name: Ninoy Aquino Day
regions: [ph]
mday: 21
- name: National Heroes Day
regions: [ph]
function: ph_heroes_day(year)
11:
- name: All Saints Day
regions: [ph]
mday: 1
type: informal
- name: Bonifacio Day
regions: [ph]
mday: 30
12:
- name: Christmas Day
regions: [ph]
mday: 25
- name: Rizal Day
regions: [ph]
mday: 30
- name: New Year's Eve
regions: [ph]
mday: 31
methods:
ph_heroes_day:
# last Monday of August
arguments: year
source: |
date = Date.new(year, 8, -1)
if date.wday != 1
date -= date.wday - 1
end
date
tests:
- given:
date: '2015-04-03'
regions: ["ph"]
expect:
name: "Good Friday"
- given:
date: '2015-04-09'
regions: ["ph"]
expect:
name: "The Day of Valor"
- given:
date: '2015-05-01'
regions: ["ph"]
expect:
name: "Labor Day"
- given:
date: '2015-06-12'
regions: ["ph"]
expect:
name: "Independence Day"
- given:
date: '2015-08-21'
regions: ["ph"]
expect:
name: "Ninoy Aquino Day"
- given:
date: '2015-08-31'
regions: ["ph"]
expect:
name: "National Heroes Day"
- given:
date: '2015-11-30'
regions: ["ph"]
expect:
name: "Bonifacio Day"
- given:
date: '2015-12-25'
regions: ["ph"]
expect:
name: "Christmas Day"
- given:
date: '2015-12-30'
regions: ["ph"]
expect:
name: "Rizal Day"