date_discreter 0.0.4 → 0.0.5
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 +12 -0
- data/.github/workflows/pages.yml +59 -0
- data/.github/workflows/release_gem.yml +41 -0
- data/.github/workflows/test.yml +31 -56
- data/CHANGELOG.md +7 -1
- data/Gemfile +15 -0
- data/README.md +2 -3
- data/Rakefile +4 -0
- data/date_discreter.gemspec +3 -1
- data/lib/date_discreter/version.rb +1 -1
- data/spec/spec_helper.rb +3 -0
- metadata +22 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b70256a3a1b057e2a792685bf09f4811737a30b5c81c3ae0b6a254d372ed2d2
|
|
4
|
+
data.tar.gz: '087e5b7910dc050158566fd665fb1002d250ab9f84651f2016d4d05e8103c964'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd36976f2bd8cbc61f0f02698446d50d80a8f385c04ebcacbbf26eabd46a10a85515c54e37b37cd38d690747e6f76af730b6bd02ef882590730ccc312c58f7c5
|
|
7
|
+
data.tar.gz: cc0f53ae544e3e7d11650bd703b85ee669b44a440b7e98f7da6df382e55c2b817e557e41936f429bfe6caa822fa4087b0ac8fee15cac959c2e82bfe2780172ca
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
- package-ecosystem: github-actions
|
|
6
|
+
directory: /
|
|
7
|
+
schedule:
|
|
8
|
+
interval: weekly
|
|
9
|
+
cooldown:
|
|
10
|
+
default-days: 7
|
|
11
|
+
assignees:
|
|
12
|
+
- sue445
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
|
2
|
+
name: Deploy static content to Pages
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
# Runs on pushes targeting the default branch
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
|
|
10
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
|
|
13
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
16
|
+
pages: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
# Allow one concurrent deployment
|
|
20
|
+
concurrency:
|
|
21
|
+
group: "pages"
|
|
22
|
+
cancel-in-progress: true
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
# Single deploy job since we're just deploying
|
|
26
|
+
deploy:
|
|
27
|
+
environment:
|
|
28
|
+
name: github-pages
|
|
29
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout
|
|
33
|
+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
34
|
+
|
|
35
|
+
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
36
|
+
with:
|
|
37
|
+
ruby-version: ruby
|
|
38
|
+
bundler-cache: true
|
|
39
|
+
|
|
40
|
+
- run: bundle exec yard
|
|
41
|
+
|
|
42
|
+
- name: Setup Pages
|
|
43
|
+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
|
|
44
|
+
- name: Upload artifact
|
|
45
|
+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
|
|
46
|
+
with:
|
|
47
|
+
# Upload entire repository
|
|
48
|
+
path: './doc'
|
|
49
|
+
- name: Deploy to GitHub Pages
|
|
50
|
+
id: deployment
|
|
51
|
+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
|
|
52
|
+
|
|
53
|
+
- name: Slack Notification (not success)
|
|
54
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
55
|
+
if: "! success()"
|
|
56
|
+
continue-on-error: true
|
|
57
|
+
with:
|
|
58
|
+
status: ${{ job.status }}
|
|
59
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
if: github.repository == 'sue445/date_discreter'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
environment:
|
|
12
|
+
name: rubygems.org
|
|
13
|
+
url: https://rubygems.org/gems/date_discreter
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Harden Runner
|
|
21
|
+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
22
|
+
with:
|
|
23
|
+
egress-policy: audit
|
|
24
|
+
|
|
25
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby
|
|
28
|
+
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
|
|
29
|
+
with:
|
|
30
|
+
bundler-cache: true
|
|
31
|
+
ruby-version: ruby
|
|
32
|
+
|
|
33
|
+
- name: Publish to RubyGems
|
|
34
|
+
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
|
35
|
+
|
|
36
|
+
- name: Create GitHub release
|
|
37
|
+
run: |
|
|
38
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
+
env:
|
|
41
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -12,88 +12,66 @@ 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
|
-
-
|
|
39
|
-
|
|
40
|
-
-
|
|
41
|
-
|
|
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"
|
|
42
37
|
|
|
43
38
|
steps:
|
|
44
|
-
- uses: actions/checkout@
|
|
39
|
+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
45
40
|
|
|
46
|
-
|
|
47
|
-
- name: Cache vendor/bundle
|
|
48
|
-
uses: actions/cache@v1
|
|
49
|
-
id: cache_gem
|
|
41
|
+
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
50
42
|
with:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
restore-keys: |
|
|
54
|
-
v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
|
|
55
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
43
|
+
ruby-version: ${{ matrix.ruby }}
|
|
44
|
+
bundler-cache: true
|
|
56
45
|
|
|
57
|
-
-
|
|
58
|
-
run: |
|
|
59
|
-
set -xe
|
|
60
|
-
bundle config path vendor/bundle
|
|
61
|
-
bundle update --jobs $(nproc) --retry 3
|
|
62
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
46
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
|
63
47
|
|
|
64
48
|
- name: Setup Code Climate Test Reporter
|
|
65
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
49
|
+
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
66
50
|
with:
|
|
67
51
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
68
52
|
command: before-build
|
|
69
|
-
if: matrix.ruby >= 'ruby:2.4'
|
|
70
53
|
continue-on-error: true
|
|
71
54
|
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
bundle exec rspec
|
|
76
|
-
bundle exec rubydoctest README.md
|
|
77
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
55
|
+
- run: bundle exec rspec
|
|
56
|
+
- run: bundle exec rake rubydoctest
|
|
57
|
+
if: matrix.ruby >= '2.7'
|
|
78
58
|
|
|
79
59
|
- name: Teardown Code Climate Test Reporter
|
|
80
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
60
|
+
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
81
61
|
with:
|
|
82
62
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
83
63
|
command: after-build
|
|
84
|
-
if:
|
|
64
|
+
if: always()
|
|
85
65
|
continue-on-error: true
|
|
86
66
|
|
|
87
67
|
- name: Slack Notification (not success)
|
|
88
|
-
uses:
|
|
68
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
89
69
|
if: "! success()"
|
|
90
70
|
continue-on-error: true
|
|
91
71
|
with:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
96
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
72
|
+
status: ${{ job.status }}
|
|
73
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
74
|
+
matrix: ${{ toJson(matrix) }}
|
|
97
75
|
|
|
98
76
|
notify:
|
|
99
77
|
needs:
|
|
@@ -103,12 +81,9 @@ jobs:
|
|
|
103
81
|
|
|
104
82
|
steps:
|
|
105
83
|
- name: Slack Notification (success)
|
|
106
|
-
uses:
|
|
84
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
107
85
|
if: always()
|
|
108
86
|
continue-on-error: true
|
|
109
87
|
with:
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
icon_emoji: ":octocat:"
|
|
113
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
114
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
88
|
+
status: ${{ job.status }}
|
|
89
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.
|
|
2
|
+
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.5...master)
|
|
3
|
+
|
|
4
|
+
## [0.0.5](https://github.com/sue445/rubicure/date_discreter/tag/v0.0.5) (2025/11/29)
|
|
5
|
+
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.4...v0.0.5)
|
|
6
|
+
|
|
7
|
+
* Release gem from GitHub Actions
|
|
8
|
+
* https://github.com/sue445/date_discreter/pull/69
|
|
3
9
|
|
|
4
10
|
## 0.0.4 (2021/11/19)
|
|
5
11
|
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.3...v0.0.4)
|
data/Gemfile
CHANGED
|
@@ -4,12 +4,19 @@ source 'https://rubygems.org'
|
|
|
4
4
|
gemspec
|
|
5
5
|
|
|
6
6
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.2")
|
|
7
|
+
# NOTE: activesupport 5.0.0+ requires Ruby 2.2.2+
|
|
7
8
|
gem "activesupport", "< 5.0.0"
|
|
9
|
+
elsif Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
10
|
+
# NOTE: activesupport 7.0.0+ requires Ruby 2.7.0+
|
|
11
|
+
gem "activesupport", "< 7.0.0"
|
|
8
12
|
end
|
|
9
13
|
|
|
10
14
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.0")
|
|
11
15
|
# NOTE: rake v13.0.0+ requires Ruby 2.2.0+
|
|
12
16
|
gem "rake", "< 13.0.0"
|
|
17
|
+
|
|
18
|
+
# NOTE: concurrent-ruby v1.1.0+ requires Ruby 2.2.0+
|
|
19
|
+
gem "concurrent-ruby", "< 1.1.0"
|
|
13
20
|
end
|
|
14
21
|
|
|
15
22
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.0")
|
|
@@ -30,4 +37,12 @@ end
|
|
|
30
37
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
|
|
31
38
|
# NOTE: json v2.6.0+ requires Ruby 2.3.0+
|
|
32
39
|
gem "json", "< 2.6.0"
|
|
40
|
+
|
|
41
|
+
# NOTE: webrick v1.4.0+ requires Ruby 2.3.0+
|
|
42
|
+
gem "webrick", "< 1.4.0"
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
46
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
|
47
|
+
gem "term-ansicolor", "< 1.9.0"
|
|
33
48
|
end
|
data/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Check discrete of months, days and hours
|
|
4
4
|
|
|
5
5
|
[](http://badge.fury.io/rb/date_discreter)
|
|
6
|
-
[](https://github.com/sue445/date_discreter/actions/workflows/test.yml)
|
|
7
7
|
[](https://codeclimate.com/github/sue445/date_discreter)
|
|
8
8
|
[](https://coveralls.io/r/sue445/date_discreter)
|
|
9
9
|
|
|
10
10
|
## Requirements
|
|
11
11
|
|
|
12
|
-
* ruby
|
|
12
|
+
* ruby 2.0+
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
@@ -87,4 +87,3 @@ Or install it yourself as:
|
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
[](https://bitdeli.com/free "Bitdeli Badge")
|
|
90
|
-
|
data/Rakefile
CHANGED
data/date_discreter.gemspec
CHANGED
|
@@ -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/date_discreter/"
|
|
19
20
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
20
21
|
|
|
21
22
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -26,10 +27,11 @@ Gem::Specification.new do |spec|
|
|
|
26
27
|
spec.add_dependency 'activesupport'
|
|
27
28
|
|
|
28
29
|
spec.add_development_dependency "bundler", ">= 1.5"
|
|
29
|
-
spec.add_development_dependency "
|
|
30
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
30
31
|
spec.add_development_dependency "rake"
|
|
31
32
|
spec.add_development_dependency "rspec"
|
|
32
33
|
spec.add_development_dependency "rubydoctest", ">= 1.1.5"
|
|
33
34
|
spec.add_development_dependency "simplecov"
|
|
35
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
34
36
|
spec.add_development_dependency "yard"
|
|
35
37
|
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -6,6 +6,9 @@ if ENV["CI"]
|
|
|
6
6
|
SimpleCov.start
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
+
# FIXME: NameError: uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger when activesupport < 7.1
|
|
10
|
+
require "logger"
|
|
11
|
+
|
|
9
12
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
|
10
13
|
require "date_discreter"
|
|
11
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: date_discreter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
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
|
- - ">="
|
|
@@ -108,6 +107,20 @@ dependencies:
|
|
|
108
107
|
- - ">="
|
|
109
108
|
- !ruby/object:Gem::Version
|
|
110
109
|
version: '0'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: term-ansicolor
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "!="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: 1.11.1
|
|
117
|
+
type: :development
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "!="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: 1.11.1
|
|
111
124
|
- !ruby/object:Gem::Dependency
|
|
112
125
|
name: yard
|
|
113
126
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -130,6 +143,9 @@ extensions: []
|
|
|
130
143
|
extra_rdoc_files: []
|
|
131
144
|
files:
|
|
132
145
|
- ".coveralls.yml"
|
|
146
|
+
- ".github/dependabot.yml"
|
|
147
|
+
- ".github/workflows/pages.yml"
|
|
148
|
+
- ".github/workflows/release_gem.yml"
|
|
133
149
|
- ".github/workflows/test.yml"
|
|
134
150
|
- ".gitignore"
|
|
135
151
|
- ".rspec"
|
|
@@ -151,8 +167,8 @@ metadata:
|
|
|
151
167
|
homepage_uri: https://github.com/sue445/date_discreter
|
|
152
168
|
source_code_uri: https://github.com/sue445/date_discreter
|
|
153
169
|
changelog_uri: https://github.com/sue445/date_discreter/blob/master/CHANGELOG.md
|
|
170
|
+
documentation_uri: https://sue445.github.io/date_discreter/
|
|
154
171
|
rubygems_mfa_required: 'true'
|
|
155
|
-
post_install_message:
|
|
156
172
|
rdoc_options: []
|
|
157
173
|
require_paths:
|
|
158
174
|
- lib
|
|
@@ -167,8 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
183
|
- !ruby/object:Gem::Version
|
|
168
184
|
version: '0'
|
|
169
185
|
requirements: []
|
|
170
|
-
rubygems_version: 3.
|
|
171
|
-
signing_key:
|
|
186
|
+
rubygems_version: 3.6.7
|
|
172
187
|
specification_version: 4
|
|
173
188
|
summary: Check discrete of months, days and hours
|
|
174
189
|
test_files:
|