date_discreter 0.0.4 → 0.0.6
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 +58 -66
- data/CHANGELOG.md +13 -1
- data/Gemfile +20 -0
- data/README.md +3 -4
- data/Rakefile +4 -0
- data/date_discreter.gemspec +4 -1
- data/lib/date_discreter/version.rb +1 -1
- data/spec/spec_helper.rb +3 -0
- 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: a0e6598d912e4157b15d93fb555af8fadfb1eeb57006e685cf6a90e1484ee10f
|
|
4
|
+
data.tar.gz: 6d740e06abbe4916da819f0d294928e906406c814d8315cd96ff1c9db327fd34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b17cf597a6f7113e88068066a391470b7b5da9332581be022432e326780d9e271275babec7d0f3572425a6b9b609c2888dcc8bf20fc0568586fa0516bafab2d
|
|
7
|
+
data.tar.gz: 329daf7801a61855761ef13ae050c0bab9f84ad7f5ecdde2be8c6e4088749d3eba52e36eea070c82af4b9cc6275e6bc211394e5a1e1698cc2e44caf58d9cbc66
|
|
@@ -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/date_discreter
|
|
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/date_discreter
|
|
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/date_discreter
|
|
11
|
+
gem-name: date_discreter
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -12,103 +12,95 @@ 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"
|
|
37
|
+
- "4.0"
|
|
42
38
|
|
|
43
39
|
steps:
|
|
44
|
-
- uses: actions/checkout@
|
|
40
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
41
|
+
|
|
42
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
43
|
+
with:
|
|
44
|
+
ruby-version: ${{ matrix.ruby }}
|
|
45
|
+
bundler-cache: true
|
|
46
|
+
|
|
47
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
45
48
|
|
|
49
|
+
- run: bundle exec rspec
|
|
50
|
+
- run: bundle exec rake rubydoctest
|
|
51
|
+
if: matrix.ruby >= '2.7'
|
|
46
52
|
|
|
47
|
-
- name:
|
|
48
|
-
uses:
|
|
49
|
-
|
|
53
|
+
- name: Slack Notification (not success)
|
|
54
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
55
|
+
if: "! success()"
|
|
56
|
+
continue-on-error: true
|
|
50
57
|
with:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
status: ${{ job.status }}
|
|
59
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
60
|
+
matrix: ${{ toJson(matrix) }}
|
|
61
|
+
|
|
62
|
+
yard:
|
|
63
|
+
runs-on: ubuntu-latest
|
|
64
|
+
|
|
65
|
+
steps:
|
|
66
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
67
|
+
|
|
68
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
69
|
+
with:
|
|
70
|
+
ruby-version: ruby
|
|
71
|
+
bundler-cache: true
|
|
56
72
|
|
|
57
73
|
- name: bundle update
|
|
58
74
|
run: |
|
|
59
75
|
set -xe
|
|
60
76
|
bundle config path vendor/bundle
|
|
61
|
-
bundle update --jobs $(nproc) --retry 3
|
|
62
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
63
|
-
|
|
64
|
-
- name: Setup Code Climate Test Reporter
|
|
65
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
66
|
-
with:
|
|
67
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
68
|
-
command: before-build
|
|
69
|
-
if: matrix.ruby >= 'ruby:2.4'
|
|
70
|
-
continue-on-error: true
|
|
77
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
71
78
|
|
|
72
|
-
- name:
|
|
79
|
+
- name: yard generating test
|
|
73
80
|
run: |
|
|
74
81
|
set -xe
|
|
75
|
-
bundle exec
|
|
76
|
-
|
|
77
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
78
|
-
|
|
79
|
-
- name: Teardown Code Climate Test Reporter
|
|
80
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
81
|
-
with:
|
|
82
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
83
|
-
command: after-build
|
|
84
|
-
if: matrix.ruby >= 'ruby:2.4' && always()
|
|
85
|
-
continue-on-error: true
|
|
82
|
+
bundle exec yard
|
|
83
|
+
ls -ld doc/
|
|
86
84
|
|
|
87
85
|
- name: Slack Notification (not success)
|
|
88
|
-
uses:
|
|
86
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
89
87
|
if: "! success()"
|
|
90
88
|
continue-on-error: true
|
|
91
89
|
with:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
90
|
+
status: ${{ job.status }}
|
|
91
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
92
|
+
|
|
93
|
+
all-pass:
|
|
94
|
+
if: always()
|
|
97
95
|
|
|
98
|
-
notify:
|
|
99
96
|
needs:
|
|
100
97
|
- test
|
|
98
|
+
- yard
|
|
101
99
|
|
|
102
|
-
runs-on: ubuntu-
|
|
100
|
+
runs-on: ubuntu-slim
|
|
103
101
|
|
|
104
102
|
steps:
|
|
105
|
-
- name:
|
|
106
|
-
uses:
|
|
107
|
-
if: always()
|
|
108
|
-
continue-on-error: true
|
|
103
|
+
- name: check dependent jobs
|
|
104
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
109
105
|
with:
|
|
110
|
-
|
|
111
|
-
type: ${{ job.status }}
|
|
112
|
-
icon_emoji: ":octocat:"
|
|
113
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
114
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
106
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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.6...master)
|
|
3
|
+
|
|
4
|
+
## [0.0.6](https://github.com/sue445/rubicure/date_discreter/tag/v0.0.6) (2026/08/23)
|
|
5
|
+
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.5...v0.0.6)
|
|
6
|
+
|
|
7
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
8
|
+
* https://github.com/sue445/date_discreter/pull/108
|
|
9
|
+
|
|
10
|
+
## [0.0.5](https://github.com/sue445/rubicure/date_discreter/tag/v0.0.5) (2025/11/29)
|
|
11
|
+
[full changelog](https://github.com/sue445/date_discreter/compare/v0.0.4...v0.0.5)
|
|
12
|
+
|
|
13
|
+
* Release gem from GitHub Actions
|
|
14
|
+
* https://github.com/sue445/date_discreter/pull/69
|
|
3
15
|
|
|
4
16
|
## 0.0.4 (2021/11/19)
|
|
5
17
|
[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,17 @@ 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"
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.2.0")
|
|
51
|
+
# NOTE: i18n 1.15.0+ requires Ruby 3.2+
|
|
52
|
+
gem "i18n", "< 1.15.0"
|
|
33
53
|
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
|
+
[](https://qlty.sh/gh/sue445/projects/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,12 @@ 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"
|
|
31
|
+
spec.add_development_dependency "irb"
|
|
30
32
|
spec.add_development_dependency "rake"
|
|
31
33
|
spec.add_development_dependency "rspec"
|
|
32
34
|
spec.add_development_dependency "rubydoctest", ">= 1.1.5"
|
|
33
35
|
spec.add_development_dependency "simplecov"
|
|
36
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
34
37
|
spec.add_development_dependency "yard"
|
|
35
38
|
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.6
|
|
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,21 @@ dependencies:
|
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '1.5'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
41
|
+
name: coveralls_reborn
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: irb
|
|
43
56
|
requirement: !ruby/object:Gem::Requirement
|
|
44
57
|
requirements:
|
|
45
58
|
- - ">="
|
|
@@ -108,6 +121,20 @@ dependencies:
|
|
|
108
121
|
- - ">="
|
|
109
122
|
- !ruby/object:Gem::Version
|
|
110
123
|
version: '0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: term-ansicolor
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - "!="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: 1.11.1
|
|
131
|
+
type: :development
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - "!="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: 1.11.1
|
|
111
138
|
- !ruby/object:Gem::Dependency
|
|
112
139
|
name: yard
|
|
113
140
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -130,6 +157,11 @@ extensions: []
|
|
|
130
157
|
extra_rdoc_files: []
|
|
131
158
|
files:
|
|
132
159
|
- ".coveralls.yml"
|
|
160
|
+
- ".github/dependabot.yml"
|
|
161
|
+
- ".github/release.yml"
|
|
162
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
163
|
+
- ".github/workflows/pages.yml"
|
|
164
|
+
- ".github/workflows/release_gem.yml"
|
|
133
165
|
- ".github/workflows/test.yml"
|
|
134
166
|
- ".gitignore"
|
|
135
167
|
- ".rspec"
|
|
@@ -151,8 +183,8 @@ metadata:
|
|
|
151
183
|
homepage_uri: https://github.com/sue445/date_discreter
|
|
152
184
|
source_code_uri: https://github.com/sue445/date_discreter
|
|
153
185
|
changelog_uri: https://github.com/sue445/date_discreter/blob/master/CHANGELOG.md
|
|
186
|
+
documentation_uri: https://sue445.github.io/date_discreter/
|
|
154
187
|
rubygems_mfa_required: 'true'
|
|
155
|
-
post_install_message:
|
|
156
188
|
rdoc_options: []
|
|
157
189
|
require_paths:
|
|
158
190
|
- lib
|
|
@@ -167,8 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
199
|
- !ruby/object:Gem::Version
|
|
168
200
|
version: '0'
|
|
169
201
|
requirements: []
|
|
170
|
-
rubygems_version:
|
|
171
|
-
signing_key:
|
|
202
|
+
rubygems_version: 4.0.16
|
|
172
203
|
specification_version: 4
|
|
173
204
|
summary: Check discrete of months, days and hours
|
|
174
205
|
test_files:
|