sengiri_yaml 1.0.0 → 1.0.2
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 +51 -41
- data/CHANGELOG.md +13 -1
- data/Gemfile +5 -0
- data/README.md +2 -2
- data/lib/sengiri_yaml/version.rb +1 -1
- data/sengiri_yaml.gemspec +6 -2
- data/spec/bin/sengitri_spec.rb +1 -1
- data/spec/sengiri_yaml/writer_spec.rb +4 -4
- data/spec/spec_helper.rb +0 -1
- metadata +54 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1053eccc1fa6ab49f7511af53f2442dc7a1b2c15c7cfd7e699d46d20f93f3225
|
|
4
|
+
data.tar.gz: 52d91f7b70c8fbddd6a389ee43c098d3fb6bc3a5e19dfbe46cbde9a2b1d08bd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0c1e3405b6bfb1b3880d2fd604a2fb7f24d607b441a299c64d61a3dfc7c82ab2b9a2d68dcd88e6f1897ebbd02f9516090487fc725ff2627d5b426a15bcfccd3
|
|
7
|
+
data.tar.gz: 5515b9d6bf555e9bdee374641b8ddfee14f49f7fe48d134b41c6d5fcfce2e5a723432ba58008e148d45d4a0e12b508b2ceaacc1d483dba9fcdafebf34ff41651
|
|
@@ -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/sengiri_yaml
|
|
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/sengiri_yaml
|
|
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/sengiri_yaml
|
|
11
|
+
gem-name: sengiri_yaml
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -16,73 +16,83 @@ jobs:
|
|
|
16
16
|
test:
|
|
17
17
|
runs-on: ubuntu-latest
|
|
18
18
|
|
|
19
|
-
container: ${{ matrix.ruby }}
|
|
20
|
-
|
|
21
19
|
strategy:
|
|
22
20
|
fail-fast: false
|
|
23
21
|
|
|
24
22
|
matrix:
|
|
25
23
|
ruby:
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
|
|
24
|
+
- "2.6"
|
|
25
|
+
- "2.7"
|
|
26
|
+
- "3.0"
|
|
27
|
+
- "3.1"
|
|
28
|
+
- "3.2"
|
|
29
|
+
- "3.3"
|
|
30
|
+
- "3.4"
|
|
31
|
+
- "4.0"
|
|
34
32
|
|
|
35
33
|
steps:
|
|
36
|
-
- uses: actions/checkout@
|
|
34
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
37
35
|
|
|
38
|
-
-
|
|
39
|
-
uses: actions/cache@v1
|
|
40
|
-
id: cache_gem
|
|
36
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
41
37
|
with:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
38
|
+
ruby-version: ${{ matrix.ruby }}
|
|
39
|
+
bundler-cache: true
|
|
40
|
+
|
|
41
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
42
|
+
|
|
43
|
+
- run: bundle exec rspec
|
|
44
|
+
|
|
45
|
+
- name: Slack Notification (not success)
|
|
46
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
47
|
+
if: "! success()"
|
|
48
|
+
continue-on-error: true
|
|
49
|
+
with:
|
|
50
|
+
status: ${{ job.status }}
|
|
51
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
52
|
+
matrix: ${{ toJson(matrix) }}
|
|
53
|
+
|
|
54
|
+
yard:
|
|
55
|
+
runs-on: ubuntu-latest
|
|
56
|
+
|
|
57
|
+
steps:
|
|
58
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
59
|
+
|
|
60
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
61
|
+
with:
|
|
62
|
+
ruby-version: ruby
|
|
63
|
+
bundler-cache: true
|
|
47
64
|
|
|
48
65
|
- name: bundle update
|
|
49
66
|
run: |
|
|
50
67
|
set -xe
|
|
51
68
|
bundle config path vendor/bundle
|
|
52
|
-
bundle update --jobs $(nproc) --retry 3
|
|
53
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
69
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
54
70
|
|
|
55
|
-
- name:
|
|
71
|
+
- name: yard generating test
|
|
56
72
|
run: |
|
|
57
73
|
set -xe
|
|
58
|
-
bundle exec
|
|
59
|
-
|
|
74
|
+
bundle exec yard
|
|
75
|
+
ls -ld doc/
|
|
60
76
|
|
|
61
77
|
- name: Slack Notification (not success)
|
|
62
|
-
uses:
|
|
78
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
63
79
|
if: "! success()"
|
|
64
80
|
continue-on-error: true
|
|
65
81
|
with:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
82
|
+
status: ${{ job.status }}
|
|
83
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
84
|
+
|
|
85
|
+
all-pass:
|
|
86
|
+
if: always()
|
|
71
87
|
|
|
72
|
-
notify:
|
|
73
88
|
needs:
|
|
74
89
|
- test
|
|
90
|
+
- yard
|
|
75
91
|
|
|
76
|
-
runs-on: ubuntu-
|
|
92
|
+
runs-on: ubuntu-slim
|
|
77
93
|
|
|
78
94
|
steps:
|
|
79
|
-
- name:
|
|
80
|
-
uses:
|
|
81
|
-
if: always()
|
|
82
|
-
continue-on-error: true
|
|
95
|
+
- name: check dependent jobs
|
|
96
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
83
97
|
with:
|
|
84
|
-
|
|
85
|
-
type: ${{ job.status }}
|
|
86
|
-
icon_emoji: ":octocat:"
|
|
87
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
88
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
98
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
|
-
[Full Changelog](https://github.com/sue445/sengiri_yaml/compare/v1.0.
|
|
4
|
+
[Full Changelog](https://github.com/sue445/sengiri_yaml/compare/v1.0.2...master)
|
|
5
|
+
|
|
6
|
+
## [v1.0.2](https://github.com/sue445/sengiri_yaml/releases/tag/v1.0.2) (2026-08-23)
|
|
7
|
+
[Full Changelog](https://github.com/sue445/sengiri_yaml/compare/v1.0.1...v1.0.2)
|
|
8
|
+
|
|
9
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
10
|
+
* https://github.com/sue445/sengiri_yaml/pull/85
|
|
11
|
+
|
|
12
|
+
## [v1.0.1](https://github.com/sue445/sengiri_yaml/releases/tag/v1.0.1) (2025-11-30)
|
|
13
|
+
[Full Changelog](https://github.com/sue445/sengiri_yaml/compare/v1.0.0...v1.0.1)
|
|
14
|
+
|
|
15
|
+
* Release gem from GitHub Actions
|
|
16
|
+
* https://github.com/sue445/sengiri_yaml/pull/47
|
|
5
17
|
|
|
6
18
|
## [v1.0.0](https://github.com/sue445/sengiri_yaml/tree/v0.0.4) (2021-12-31)
|
|
7
19
|
[Full Changelog](https://github.com/sue445/sengiri_yaml/compare/v0.0.4...v1.0.0)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# SengiriYaml
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/sengiri_yaml)
|
|
4
|
-
[](https://github.com/sue445/sengiri_yaml/actions/workflows/test.yml)
|
|
5
|
+
[](https://qlty.sh/gh/sue445/projects/sengiri_yaml)
|
|
6
6
|
[](https://coveralls.io/r/sue445/sengiri_yaml)
|
|
7
7
|
|
|
8
8
|
divide yaml file
|
data/lib/sengiri_yaml/version.rb
CHANGED
data/sengiri_yaml.gemspec
CHANGED
|
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
19
19
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
20
20
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
21
|
+
spec.metadata["documentation_uri"] = "https://sue445.github.io/sengiri_yaml/"
|
|
21
22
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
22
23
|
|
|
23
24
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -26,10 +27,13 @@ Gem::Specification.new do |spec|
|
|
|
26
27
|
spec.require_paths = ["lib"]
|
|
27
28
|
|
|
28
29
|
spec.add_development_dependency "bundler"
|
|
29
|
-
spec.add_development_dependency "
|
|
30
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
31
|
+
spec.add_development_dependency "logger"
|
|
32
|
+
spec.add_development_dependency "ostruct"
|
|
30
33
|
spec.add_development_dependency "rake"
|
|
34
|
+
spec.add_development_dependency "rdoc"
|
|
31
35
|
spec.add_development_dependency "rspec"
|
|
32
|
-
spec.add_development_dependency "rspec-power_assert"
|
|
33
36
|
spec.add_development_dependency "rspec-temp_dir"
|
|
37
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
34
38
|
spec.add_development_dependency "yard"
|
|
35
39
|
end
|
data/spec/bin/sengitri_spec.rb
CHANGED
|
@@ -36,8 +36,8 @@ data2:
|
|
|
36
36
|
end
|
|
37
37
|
|
|
38
38
|
it{ should eq [data1_file, data2_file] }
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
it { expect(File.read(data1_file)).to eq data1_yml }
|
|
40
|
+
it { expect(File.read(data2_file)).to eq data2_yml }
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
describe "with array yaml" do
|
|
@@ -72,8 +72,8 @@ data2:
|
|
|
72
72
|
end
|
|
73
73
|
|
|
74
74
|
it{ should eq [data1_file, data2_file] }
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
it { expect(File.read(data1_file)).to eq data1_yml }
|
|
76
|
+
it { expect(File.read(data2_file)).to eq data2_yml }
|
|
77
77
|
end
|
|
78
78
|
end
|
|
79
79
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sengiri_yaml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
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: bundler
|
|
@@ -25,7 +24,35 @@ dependencies:
|
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: '0'
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
27
|
+
name: coveralls_reborn
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: logger
|
|
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: ostruct
|
|
29
56
|
requirement: !ruby/object:Gem::Requirement
|
|
30
57
|
requirements:
|
|
31
58
|
- - ">="
|
|
@@ -53,7 +80,7 @@ dependencies:
|
|
|
53
80
|
- !ruby/object:Gem::Version
|
|
54
81
|
version: '0'
|
|
55
82
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name:
|
|
83
|
+
name: rdoc
|
|
57
84
|
requirement: !ruby/object:Gem::Requirement
|
|
58
85
|
requirements:
|
|
59
86
|
- - ">="
|
|
@@ -67,7 +94,7 @@ dependencies:
|
|
|
67
94
|
- !ruby/object:Gem::Version
|
|
68
95
|
version: '0'
|
|
69
96
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: rspec
|
|
97
|
+
name: rspec
|
|
71
98
|
requirement: !ruby/object:Gem::Requirement
|
|
72
99
|
requirements:
|
|
73
100
|
- - ">="
|
|
@@ -94,6 +121,20 @@ dependencies:
|
|
|
94
121
|
- - ">="
|
|
95
122
|
- !ruby/object:Gem::Version
|
|
96
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
|
|
97
138
|
- !ruby/object:Gem::Dependency
|
|
98
139
|
name: yard
|
|
99
140
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -117,6 +158,11 @@ extensions: []
|
|
|
117
158
|
extra_rdoc_files: []
|
|
118
159
|
files:
|
|
119
160
|
- ".coveralls.yml"
|
|
161
|
+
- ".github/dependabot.yml"
|
|
162
|
+
- ".github/release.yml"
|
|
163
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
164
|
+
- ".github/workflows/pages.yml"
|
|
165
|
+
- ".github/workflows/release_gem.yml"
|
|
120
166
|
- ".github/workflows/test.yml"
|
|
121
167
|
- ".gitignore"
|
|
122
168
|
- ".rspec"
|
|
@@ -147,8 +193,8 @@ metadata:
|
|
|
147
193
|
homepage_uri: https://github.com/sue445/sengiri_yaml
|
|
148
194
|
source_code_uri: https://github.com/sue445/sengiri_yaml
|
|
149
195
|
changelog_uri: https://github.com/sue445/sengiri_yaml/blob/master/CHANGELOG.md
|
|
196
|
+
documentation_uri: https://sue445.github.io/sengiri_yaml/
|
|
150
197
|
rubygems_mfa_required: 'true'
|
|
151
|
-
post_install_message:
|
|
152
198
|
rdoc_options: []
|
|
153
199
|
require_paths:
|
|
154
200
|
- lib
|
|
@@ -163,8 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
163
209
|
- !ruby/object:Gem::Version
|
|
164
210
|
version: '0'
|
|
165
211
|
requirements: []
|
|
166
|
-
rubygems_version:
|
|
167
|
-
signing_key:
|
|
212
|
+
rubygems_version: 4.0.16
|
|
168
213
|
specification_version: 4
|
|
169
214
|
summary: divide yaml file
|
|
170
215
|
test_files:
|