verified_holidays 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/verified_holidays/cabinet_office.rb +2 -2
- data/lib/verified_holidays/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2986d2aa60547035c6795747b31ac458bc50c97c6eb660a8409352fb8944286c
|
|
4
|
+
data.tar.gz: 1e718a34fcb61b46d987ae144aae6e26694fabbbfa8f1aff512a307818ea87e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0428498b6ec9ec194fd069d19ee0db4da85b9d321675640ce96c8045ae7f0efefe4e451d5f3e4f686def85d398c4f3f61031e82052362237e589c482cb8ed9ee'
|
|
7
|
+
data.tar.gz: 84118b932d26018ef3cf5b4fac2c397d555e6ceecfc1337cb9d61bda48457d07c0b4d28379f844ecb11f5f7bb8e30e835b297e6bcec4fa0b4c6f41de9f8f96f0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.4] - 2026-03-29
|
|
4
|
+
|
|
5
|
+
- Fix file path labeler removing branch-based labels (sync-labels: false)
|
|
6
|
+
|
|
7
|
+
## [0.1.3] - 2026-03-29
|
|
8
|
+
|
|
9
|
+
- Replace numeric index access with header name access in `CabinetOffice.parse`
|
|
10
|
+
- Add Auto Release workflow
|
|
11
|
+
- Add auto-labeler workflows (file path labeler + branch prefix labeler)
|
|
12
|
+
|
|
3
13
|
## [0.1.2] - 2026-03-29
|
|
4
14
|
|
|
5
15
|
- Add SimpleCov with 90% minimum coverage threshold (line and branch)
|
|
@@ -31,8 +31,8 @@ module VerifiedHolidays
|
|
|
31
31
|
def self.parse(csv_string)
|
|
32
32
|
holidays = {}
|
|
33
33
|
CSV.parse(csv_string, headers: true) do |row|
|
|
34
|
-
date_str = presence(row[
|
|
35
|
-
name = presence(row[
|
|
34
|
+
date_str = presence(row['国民の祝日・休日月日'])
|
|
35
|
+
name = presence(row['国民の祝日・休日名称'])
|
|
36
36
|
next if date_str.nil? || name.nil?
|
|
37
37
|
|
|
38
38
|
holidays[Date.strptime(date_str, '%Y/%m/%d')] = name
|