google_holiday_calendar 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/.github/dependabot.yml +20 -0
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/pages.yml +18 -0
- data/.github/workflows/release_gem.yml +14 -0
- data/.github/workflows/test.yml +70 -48
- data/.yardopts +1 -0
- data/CHANGELOG.md +13 -1
- data/Gemfile +22 -2
- data/README.md +3 -3
- data/google_holiday_calendar.gemspec +4 -1
- data/lib/google_holiday_calendar/calendar.rb +1 -1
- data/lib/google_holiday_calendar/version.rb +1 -1
- metadata +38 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73ceacac10ffcff4a3306930f104a6b92d6852a2553dd97fd1f8d739c2d8ce21
|
|
4
|
+
data.tar.gz: 2d06b6fbfd199946a1f820b90bafbb423a37bf6349eddc61caaab6979c0845fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13d66b42cc9c7332a09e47ef2a37fad4c8368d0bd85c8db845389e239ab309d7fb83cb43763a3a54816fc378f67f07838559bc9b503c3aa549233ed6e8e4008d
|
|
7
|
+
data.tar.gz: 8e75f08d873f4c196224a1a7aaf7cb5f7065ad68126d22aad35a0c6b8c8e0e2dfe4afea75b5eb450bbda83019671ac7215b1fb48e69c225dca2e20beeb142316
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: /
|
|
10
|
+
schedule:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
14
|
+
assignees:
|
|
15
|
+
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/google_holiday_calendar
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/google_holiday_calendar
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Deploy yard to Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
deploy:
|
|
16
|
+
uses: sue445/workflows/.github/workflows/pages-yard.yml@main
|
|
17
|
+
secrets:
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
uses: sue445/workflows/.github/workflows/release_gem.yml@main
|
|
9
|
+
with:
|
|
10
|
+
repo-name: sue445/google_holiday_calendar
|
|
11
|
+
gem-name: google_holiday_calendar
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -12,86 +12,108 @@ on:
|
|
|
12
12
|
schedule:
|
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
14
|
|
|
15
|
-
env:
|
|
16
|
-
CI: "true"
|
|
17
|
-
|
|
18
15
|
jobs:
|
|
19
16
|
test:
|
|
20
17
|
runs-on: ubuntu-latest
|
|
21
18
|
|
|
22
|
-
container: ${{ matrix.ruby }}
|
|
23
|
-
|
|
24
19
|
strategy:
|
|
25
20
|
fail-fast: false
|
|
26
21
|
|
|
27
22
|
matrix:
|
|
28
23
|
ruby:
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
24
|
+
- "2.0"
|
|
25
|
+
- "2.1"
|
|
26
|
+
- "2.2"
|
|
27
|
+
- "2.3"
|
|
28
|
+
- "2.4"
|
|
29
|
+
- "2.5"
|
|
30
|
+
- "2.6"
|
|
31
|
+
- "2.7"
|
|
32
|
+
- "3.0"
|
|
33
|
+
- "3.1"
|
|
34
|
+
- "3.2"
|
|
35
|
+
- "3.3"
|
|
36
|
+
- "3.4"
|
|
37
|
+
- "4.0"
|
|
38
|
+
|
|
39
39
|
include:
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
# FIXME: Workaround for "ArgumentError: wrong number of arguments (given 4, expected 1)"
|
|
41
|
+
# c.f. https://github.com/ruby/setup-ruby#rubygems
|
|
42
|
+
- ruby: "2.5"
|
|
43
|
+
rubygems: "3.0.0"
|
|
42
44
|
|
|
43
45
|
steps:
|
|
44
|
-
- uses: actions/checkout@
|
|
46
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
47
|
+
|
|
48
|
+
# FIXME: Workaround for error in `bundle clean`
|
|
49
|
+
# /opt/hostedtoolcache/Ruby/2.5.9/x64/bin/bundle clean
|
|
50
|
+
# Cleaning all the gems on your system is dangerous! If you're sure you want to
|
|
51
|
+
# remove every system gem not in this bundle, run `bundle clean --force`.
|
|
52
|
+
- name: export BUNDLE_PATH
|
|
53
|
+
run: echo "BUNDLE_PATH=vendor/bundle" >> $GITHUB_ENV
|
|
54
|
+
if: matrix.ruby == '2.5'
|
|
55
|
+
|
|
56
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
57
|
+
with:
|
|
58
|
+
ruby-version: ${{ matrix.ruby }}
|
|
59
|
+
bundler-cache: true
|
|
60
|
+
rubygems: ${{ matrix.rubygems || 'default' }}
|
|
61
|
+
|
|
62
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
45
63
|
|
|
64
|
+
- run: bundle exec rspec
|
|
46
65
|
|
|
47
|
-
- name:
|
|
48
|
-
uses:
|
|
49
|
-
|
|
66
|
+
- name: Slack Notification (not success)
|
|
67
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
68
|
+
if: "! success()"
|
|
69
|
+
continue-on-error: true
|
|
50
70
|
with:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
71
|
+
status: ${{ job.status }}
|
|
72
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
73
|
+
matrix: ${{ toJson(matrix) }}
|
|
74
|
+
|
|
75
|
+
yard:
|
|
76
|
+
runs-on: ubuntu-latest
|
|
77
|
+
|
|
78
|
+
steps:
|
|
79
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
80
|
+
|
|
81
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
82
|
+
with:
|
|
83
|
+
ruby-version: ruby
|
|
84
|
+
bundler-cache: true
|
|
56
85
|
|
|
57
86
|
- name: bundle update
|
|
58
87
|
run: |
|
|
59
88
|
set -xe
|
|
60
89
|
bundle config path vendor/bundle
|
|
61
|
-
bundle update --jobs $(nproc) --retry 3
|
|
62
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
90
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
63
91
|
|
|
64
|
-
- name:
|
|
92
|
+
- name: yard generating test
|
|
65
93
|
run: |
|
|
66
94
|
set -xe
|
|
67
|
-
bundle exec
|
|
68
|
-
|
|
95
|
+
bundle exec yard
|
|
96
|
+
ls -ld doc/
|
|
69
97
|
|
|
70
98
|
- name: Slack Notification (not success)
|
|
71
|
-
uses:
|
|
99
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
72
100
|
if: "! success()"
|
|
73
101
|
continue-on-error: true
|
|
74
102
|
with:
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
103
|
+
status: ${{ job.status }}
|
|
104
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
105
|
+
|
|
106
|
+
all-pass:
|
|
107
|
+
if: always()
|
|
80
108
|
|
|
81
|
-
notify:
|
|
82
109
|
needs:
|
|
83
110
|
- test
|
|
111
|
+
- yard
|
|
84
112
|
|
|
85
|
-
runs-on: ubuntu-
|
|
113
|
+
runs-on: ubuntu-slim
|
|
86
114
|
|
|
87
115
|
steps:
|
|
88
|
-
- name:
|
|
89
|
-
uses:
|
|
90
|
-
if: always()
|
|
91
|
-
continue-on-error: true
|
|
116
|
+
- name: check dependent jobs
|
|
117
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
92
118
|
with:
|
|
93
|
-
|
|
94
|
-
type: ${{ job.status }}
|
|
95
|
-
icon_emoji: ":octocat:"
|
|
96
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
97
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
119
|
+
jobs: ${{ toJSON(needs) }}
|
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/google_holiday_calendar/compare/v0.1.
|
|
2
|
+
[full changelog](http://github.com/sue445/google_holiday_calendar/compare/v0.1.4...master)
|
|
3
|
+
|
|
4
|
+
## [v0.1.4](https://github.com/sue445/google_holiday_calendar/releases/tag/v0.1.4)
|
|
5
|
+
[full changelog](http://github.com/sue445/google_holiday_calendar/compare/v0.1.3...v0.1.4)
|
|
6
|
+
|
|
7
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
8
|
+
* https://github.com/sue445/google_holiday_calendar/pull/116
|
|
9
|
+
|
|
10
|
+
## [v0.1.3](https://github.com/sue445/google_holiday_calendar/releases/tag/v0.1.3)
|
|
11
|
+
[full changelog](http://github.com/sue445/google_holiday_calendar/compare/v0.1.2...v0.1.3)
|
|
12
|
+
|
|
13
|
+
* Release gem from GitHub Actions
|
|
14
|
+
* https://github.com/sue445/google_holiday_calendar/pull/74
|
|
3
15
|
|
|
4
16
|
## v0.1.2
|
|
5
17
|
[full changelog](http://github.com/sue445/google_holiday_calendar/compare/v0.1.1...v0.1.2)
|
data/Gemfile
CHANGED
|
@@ -20,11 +20,15 @@ end
|
|
|
20
20
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.0")
|
|
21
21
|
# NOTE: rake v13.0.0+ requires Ruby 2.2.0+
|
|
22
22
|
gem "rake", "< 13.0.0"
|
|
23
|
-
end
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
# NOTE: concurrent-ruby v1.1.0+ requires Ruby 2.2.0+
|
|
25
|
+
gem "concurrent-ruby", "< 1.1.0"
|
|
26
|
+
|
|
26
27
|
# NOTE: minitest v5.12.1+ requires Ruby 2.2.0+
|
|
27
28
|
gem "minitest", "< 5.12.1"
|
|
29
|
+
|
|
30
|
+
# NOTE: addressable v2.8.1+ requires Ruby 2.2.0+
|
|
31
|
+
gem "addressable", "< 2.8.1"
|
|
28
32
|
end
|
|
29
33
|
|
|
30
34
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.5.0")
|
|
@@ -35,4 +39,20 @@ end
|
|
|
35
39
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
|
|
36
40
|
# NOTE: json v2.6.0+ requires Ruby 2.3.0+
|
|
37
41
|
gem "json", "< 2.6.0"
|
|
42
|
+
|
|
43
|
+
# NOTE: webrick v1.4.0+ requires Ruby 2.3.0+
|
|
44
|
+
gem "webrick", "< 1.4.0"
|
|
45
|
+
|
|
46
|
+
# NOTE: webmock v3.15.0+ requires Ruby 2.3+
|
|
47
|
+
gem "webmock", "< 3.15.0"
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
51
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
|
52
|
+
gem "term-ansicolor", "< 1.9.0"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.2.0")
|
|
56
|
+
# NOTE: i18n 1.15.0+ requires Ruby 3.2+
|
|
57
|
+
gem "i18n", "< 1.15.0"
|
|
38
58
|
end
|
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# GoogleHolidayCalendar
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/google_holiday_calendar)
|
|
4
|
-
[](https://github.com/sue445/google_holiday_calendar/actions/workflows/test.yml)
|
|
5
5
|
[](https://coveralls.io/r/sue445/google_holiday_calendar)
|
|
6
|
-
[](https://qlty.sh/gh/sue445/projects/google_holiday_calendar)
|
|
7
7
|
|
|
8
8
|
Get holidays via Google Calendar.
|
|
9
9
|
|
|
@@ -128,7 +128,7 @@ $ GOOGLE_API_KEY=xxxx google_holiday_calendar --start-date=2014-01-01 --end-date
|
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
## More reference
|
|
131
|
-
|
|
131
|
+
https://sue445.github.io/google_holiday_calendar/
|
|
132
132
|
|
|
133
133
|
## Contributing
|
|
134
134
|
|
|
@@ -16,6 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
17
17
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
19
|
+
spec.metadata["documentation_uri"] = "https://sue445.github.io/google_holiday_calendar/"
|
|
19
20
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
20
21
|
|
|
21
22
|
spec.required_ruby_version = '>= 2.0.0'
|
|
@@ -32,12 +33,14 @@ Gem::Specification.new do |spec|
|
|
|
32
33
|
spec.add_dependency "activesupport", ">= 4.0.0"
|
|
33
34
|
|
|
34
35
|
spec.add_development_dependency "bundler", ">= 1.5"
|
|
35
|
-
spec.add_development_dependency "
|
|
36
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
36
37
|
spec.add_development_dependency "delorean"
|
|
37
38
|
spec.add_development_dependency "rake"
|
|
39
|
+
spec.add_development_dependency "rdoc"
|
|
38
40
|
spec.add_development_dependency "rspec"
|
|
39
41
|
spec.add_development_dependency "rspec-collection_matchers"
|
|
40
42
|
spec.add_development_dependency "rspec-its"
|
|
43
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
41
44
|
spec.add_development_dependency "webmock"
|
|
42
45
|
spec.add_development_dependency "yard"
|
|
43
46
|
end
|
|
@@ -49,7 +49,7 @@ module GoogleHolidayCalendar
|
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
# whether arg is holiday
|
|
52
|
-
# @param arg [#to_date, String]
|
|
52
|
+
# @param arg [#to_date, String] `Date`, `Time`, or date like String (ex. "YYYY-MM-DD")
|
|
53
53
|
def holiday?(arg)
|
|
54
54
|
date = to_date(arg)
|
|
55
55
|
holidays(start_date: date, end_date: date + 1.day, limit: 1).length > 0
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_holiday_calendar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activesupport
|
|
@@ -39,7 +38,7 @@ dependencies:
|
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '1.5'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
41
|
+
name: coveralls_reborn
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
44
43
|
requirements:
|
|
45
44
|
- - ">="
|
|
@@ -80,6 +79,20 @@ dependencies:
|
|
|
80
79
|
- - ">="
|
|
81
80
|
- !ruby/object:Gem::Version
|
|
82
81
|
version: '0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: rdoc
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
type: :development
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
83
96
|
- !ruby/object:Gem::Dependency
|
|
84
97
|
name: rspec
|
|
85
98
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,6 +135,20 @@ dependencies:
|
|
|
122
135
|
- - ">="
|
|
123
136
|
- !ruby/object:Gem::Version
|
|
124
137
|
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: term-ansicolor
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "!="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: 1.11.1
|
|
145
|
+
type: :development
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "!="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: 1.11.1
|
|
125
152
|
- !ruby/object:Gem::Dependency
|
|
126
153
|
name: webmock
|
|
127
154
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -159,6 +186,11 @@ extensions: []
|
|
|
159
186
|
extra_rdoc_files: []
|
|
160
187
|
files:
|
|
161
188
|
- ".coveralls.yml"
|
|
189
|
+
- ".github/dependabot.yml"
|
|
190
|
+
- ".github/release.yml"
|
|
191
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
192
|
+
- ".github/workflows/pages.yml"
|
|
193
|
+
- ".github/workflows/release_gem.yml"
|
|
162
194
|
- ".github/workflows/test.yml"
|
|
163
195
|
- ".gitignore"
|
|
164
196
|
- ".rspec"
|
|
@@ -180,8 +212,8 @@ metadata:
|
|
|
180
212
|
homepage_uri: https://github.com/sue445/google_holiday_calendar
|
|
181
213
|
source_code_uri: https://github.com/sue445/google_holiday_calendar
|
|
182
214
|
changelog_uri: https://github.com/sue445/google_holiday_calendar/blob/master/CHANGELOG.md
|
|
215
|
+
documentation_uri: https://sue445.github.io/google_holiday_calendar/
|
|
183
216
|
rubygems_mfa_required: 'true'
|
|
184
|
-
post_install_message:
|
|
185
217
|
rdoc_options: []
|
|
186
218
|
require_paths:
|
|
187
219
|
- lib
|
|
@@ -196,8 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
196
228
|
- !ruby/object:Gem::Version
|
|
197
229
|
version: '0'
|
|
198
230
|
requirements: []
|
|
199
|
-
rubygems_version:
|
|
200
|
-
signing_key:
|
|
231
|
+
rubygems_version: 4.0.16
|
|
201
232
|
specification_version: 4
|
|
202
233
|
summary: Get holidays via Google Calendar.
|
|
203
234
|
test_files: []
|