kettle-rb 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f9ff05d735b29aad898d2fc9f4c3bc227d3c2a591923749cc4d6c533f96eae7
4
- data.tar.gz: 54b208ff818cd53877d776d06a2392627a4e898869c879ef1a7621cf8797decb
3
+ metadata.gz: 9f638ae29a23088ae553db29f15cdc09837ed6f85cf64718c1322dc16b014a13
4
+ data.tar.gz: cfb129a81dd80034de4569931948a22819c0a88bbb808f4c3ad60756576a3252
5
5
  SHA512:
6
- metadata.gz: 8f10b9a9540b2b59d95c5d986d1021db9e3eb7eca7ca4d7fb37f9a9efb41ebd12a3bea247e3a3bf48e057bca8ee3bdb3f58e372590ba3d05ce25b788ba550761
7
- data.tar.gz: 4f3953d98437a56e5f29092532746781781e3f89ccf64d06cf0d52ae5f519e2e6930ff8a7af8078cf03a804544ba05249acf07b2ab96401a6d65835b75fbe411
6
+ metadata.gz: 85c2ff775f89b2d2d21e7f952004391ba25838eb0fea6d653c34f2082e5677c9d594952bdf83aeed2ffa48f3544dbc323fad04c5eb28f707d101ca9886c161a2
7
+ data.tar.gz: c2430d5eecd35c40a7c9ad08530dc2caf2ee86e532801c8f655d49708c78f9d1d41d00ffcb259871bd75b7bdb917e5c47e5136d55bd4a899e7008aaf23d4979b
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,44 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [0.1.2] - 2026-07-15
34
+
35
+ - TAG: [v0.1.2][0.1.2t]
36
+ - COVERAGE: 89.47% -- 68/76 lines in 3 files
37
+ - BRANCH COVERAGE: 75.00% -- 12/16 branches in 3 files
38
+ - 43.90% documented
39
+
40
+ ### Fixed
41
+
42
+ - Package configured license files in gem release file lists.
43
+
44
+ ## [0.1.1] - 2026-06-29
45
+
46
+ - TAG: [v0.1.1][0.1.1t]
47
+ - COVERAGE: 89.47% -- 68/76 lines in 3 files
48
+ - BRANCH COVERAGE: 75.00% -- 12/16 branches in 3 files
49
+ - 43.90% documented
50
+
51
+ ### Changed
52
+
53
+ - Updated RuboCop-LTS compatibility matrix floors to the latest released
54
+ repaired `rubocop-lts` branch stack and wrapper gem versions.
55
+ - Removed the default `RUBOCOP_LTS_LOCAL=false` development environment export
56
+ so released RuboCop-LTS gems are selected by absence of local-mode override.
57
+
58
+ - Replaced scaffold gemspec summary and description placeholders with
59
+ kettle-rb-specific package metadata.
60
+
61
+ ### Added
62
+
63
+ - License files to release package
64
+
65
+ ### Fixed
66
+
67
+ - Package the named `MIT.md` license file in the generated gemspec file list.
68
+ - Removed the scaffolded root RBS `VERSION` declaration so the style workflow's
69
+ RBS environment load no longer sees a duplicate `Kettle::Rb::VERSION`.
70
+
33
71
  ## [0.1.0] - 2026-06-27
34
72
 
35
73
  - TAG: [v0.1.0][0.1.0t]
@@ -43,6 +81,10 @@ Please file a bug if you notice a violation of semantic versioning.
43
81
  - Add `Kettle::Rb::CompatMatrix` as the shared Ruby, engine, Rails, RuboCop,
44
82
  and RuboCop LTS compatibility source of truth for kettle-rb tooling.
45
83
 
46
- [Unreleased]: https://github.com/kettle-dev/kettle-rb/compare/v0.1.0...HEAD
84
+ [Unreleased]: https://github.com/kettle-dev/kettle-rb/compare/v0.1.2...HEAD
85
+ [0.1.2]: https://github.com/kettle-dev/kettle-rb/compare/v0.1.1...v0.1.2
86
+ [0.1.2t]: https://github.com/kettle-dev/kettle-rb/releases/tag/v0.1.2
87
+ [0.1.1]: https://github.com/kettle-dev/kettle-rb/compare/v0.1.0...v0.1.1
88
+ [0.1.1t]: https://github.com/kettle-dev/kettle-rb/releases/tag/v0.1.1
47
89
  [0.1.0]: https://github.com/kettle-dev/kettle-rb/compare/7d715a6109f43ab78253e31ea49b280b659a060d...v0.1.0
48
90
  [0.1.0t]: https://github.com/kettle-dev/kettle-rb/releases/tag/v0.1.0
data/MIT.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ See [LICENSE.md](LICENSE.md) for the copyright notice.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -587,7 +587,7 @@ Thanks for RTFM. ☺️
587
587
  | Field | Value |
588
588
  |---|---|
589
589
  | Package | kettle-rb |
590
- | Description | 📏 TODO: Write a longer description or delete this line. |
590
+ | Description | 📏 Provides the shared Ruby, engine, Rails, RuboCop, and RuboCop LTS compatibility matrix used by Kettle-managed gems. |
591
591
  | Homepage | https://github.com/kettle-dev/kettle-rb |
592
592
  | Source | https://github.com/kettle-dev/kettle-rb |
593
593
  | License | `MIT` |
@@ -28,26 +28,26 @@ module Kettle
28
28
  TRUFFLERUBY_PSYCH_NOTES = (TRUFFLERUBY_NOTES + ["psych < 5.3 is needed while Gem.ruby_version is below 3.3."]).freeze
29
29
 
30
30
  MATRIX_ROWS = [
31
- ["ruby-1.8", "1.8.7-p374", "ruby", nil, nil, nil, nil, nil, "0.3.0", ["~> 0.3", ">= 0.3.0"], "rubocop-ruby1_8", ["~> 2.0", ">= 2.0.2"], "r1_8-even-v0", "4.0.x", nil, nil],
32
- ["ruby-1.9", "1.9.3-p551", "ruby", nil, nil, "2.7.11", "1.17.3", "0.41.2", "2.3.0", ["~> 2.3", ">= 2.3.0"], "rubocop-ruby1_9", ["~> 3.0", ">= 3.0.2"], "r1_9-even-v2", "4.2.11.3", nil, nil],
31
+ ["ruby-1.8", "1.8.7-p374", "ruby", nil, nil, nil, nil, nil, "0.3.1", ["~> 0.3", ">= 0.3.1"], "rubocop-ruby1_8", ["~> 2.0", ">= 2.0.5"], "r1_8-even-v0", "4.0.x", nil, nil],
32
+ ["ruby-1.9", "1.9.3-p551", "ruby", nil, nil, "2.7.11", "1.17.3", "0.41.2", "2.3.1", ["~> 2.3", ">= 2.3.1"], "rubocop-ruby1_9", ["~> 3.0", ">= 3.0.5"], "r1_9-even-v2", "4.2.11.3", nil, nil],
33
33
  ["jruby-1.7", "jruby-1.7.27", "jruby", "1.9", "1.9", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil],
34
- ["ruby-2.0", "2.0.0-p648", "ruby", nil, nil, nil, nil, "0.50.0", "4.2.0", ["~> 4.2", ">= 4.2.0"], "rubocop-ruby2_0", ["~> 3.0", ">= 3.0.2"], "r2_0-even-v4", nil, nil, nil],
35
- ["ruby-2.1", "2.1.10", "ruby", nil, nil, nil, nil, "0.57.2", "6.3.0", ["~> 6.3", ">= 6.3.0"], "rubocop-ruby2_1", ["~> 3.0", ">= 3.0.2"], "r2_1-even-v6", nil, nil, nil],
36
- ["ruby-2.2", "2.2.10", "ruby", nil, nil, nil, nil, "0.68.1", "8.3.0", ["~> 8.3", ">= 8.3.0"], "rubocop-ruby2_2", ["~> 3.0", ">= 3.0.2"], "r2_2-even-v8", "5.2.8.1", nil, nil],
37
- ["ruby-2.3", "2.3.8", "ruby", nil, nil, "3.3.27", "2.3.27", "0.81.0", "10.3.0", ["~> 10.3", ">= 10.3.0"], "rubocop-ruby2_3", ["~> 3.0", ">= 3.0.2"], "r2_3-even-v10", nil, nil, nil],
34
+ ["ruby-2.0", "2.0.0-p648", "ruby", nil, nil, nil, nil, "0.50.0", "4.3.2", ["~> 4.3", ">= 4.3.2"], "rubocop-ruby2_0", ["~> 3.0", ">= 3.0.5"], "r2_0-even-v4", nil, nil, nil],
35
+ ["ruby-2.1", "2.1.10", "ruby", nil, nil, nil, nil, "0.57.2", "6.3.1", ["~> 6.3", ">= 6.3.1"], "rubocop-ruby2_1", ["~> 3.0", ">= 3.0.5"], "r2_1-even-v6", nil, nil, nil],
36
+ ["ruby-2.2", "2.2.10", "ruby", nil, nil, nil, nil, "0.68.1", "8.3.1", ["~> 8.3", ">= 8.3.1"], "rubocop-ruby2_2", ["~> 3.0", ">= 3.0.5"], "r2_2-even-v8", "5.2.8.1", nil, nil],
37
+ ["ruby-2.3", "2.3.8", "ruby", nil, nil, "3.3.27", "2.3.27", "0.81.0", "10.3.1", ["~> 10.3", ">= 10.3.1"], "rubocop-ruby2_3", ["~> 3.0", ">= 3.0.5"], "r2_3-even-v10", nil, nil, nil],
38
38
  ["jruby-9.1", "jruby-9.1.17.0", "jruby", "2.3", "2.3", "3.3.27", "2.3.27", nil, nil, nil, nil, nil, nil, nil, nil, nil],
39
- ["ruby-2.4", "2.4.10", "ruby", nil, nil, nil, nil, "1.12.1", "12.3.0", ["~> 12.3", ">= 12.3.0"], "rubocop-ruby2_4", ["~> 3.0", ">= 3.0.2"], "r2_4-even-v12", nil, ["4.2.11.3", "5.2.8.1"], nil],
40
- ["ruby-2.5", "2.5.9", "ruby", nil, nil, nil, nil, "1.28.2", "14.3.0", ["~> 14.3", ">= 14.3.0"], "rubocop-ruby2_5", ["~> 3.0", ">= 3.0.2"], "r2_5-even-v14", "6.0.6.1", nil, nil],
39
+ ["ruby-2.4", "2.4.10", "ruby", nil, nil, nil, nil, "1.12.1", "12.3.1", ["~> 12.3", ">= 12.3.1"], "rubocop-ruby2_4", ["~> 3.0", ">= 3.0.5"], "r2_4-even-v12", nil, ["4.2.11.3", "5.2.8.1"], nil],
40
+ ["ruby-2.5", "2.5.9", "ruby", nil, nil, nil, nil, "1.28.2", "14.3.1", ["~> 14.3", ">= 14.3.1"], "rubocop-ruby2_5", ["~> 3.0", ">= 3.0.5"], "r2_5-even-v14", "6.0.6.1", nil, nil],
41
41
  ["jruby-9.2", "jruby-9.2.21.0", "jruby", "2.5", "2.5", "3.3.27", "2.3.27", nil, nil, nil, nil, nil, nil, nil, nil, nil],
42
- ["ruby-2.6", "2.6.10", "ruby", nil, nil, "3.4.22", "2.4.22", "1.50.2", "16.3.0", ["~> 16.3", ">= 16.3.0"], "rubocop-ruby2_6", ["~> 3.0", ">= 3.0.2"], "r2_6-even-v16", "6.1.7.10", nil, nil],
42
+ ["ruby-2.6", "2.6.10", "ruby", nil, nil, "3.4.22", "2.4.22", "1.50.2", "16.3.1", ["~> 16.3", ">= 16.3.1"], "rubocop-ruby2_6", ["~> 3.0", ">= 3.0.5"], "r2_6-even-v16", "6.1.7.10", nil, nil],
43
43
  ["jruby-9.3", "jruby-9.3.15.0", "jruby", "2.6", "2.6", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, ["JRuby 9.3 can require jar-dependencies ~> 0.4.1 when psych activates a newer default gem stack."]],
44
- ["ruby-2.7", "2.7.8", "ruby", nil, nil, nil, nil, "1.80.x", "18.4.0", ["~> 18.4", ">= 18.4.0"], "rubocop-ruby2_7", ["~> 3.0", ">= 3.0.2"], "r2_7-even-v18", "7.2.2.2", nil, nil],
45
- ["ruby-3.0", "3.0.7", "ruby", nil, nil, "3.5.23", "2.5.23", nil, "20.4.0", ["~> 20.4", ">= 20.4.0"], "rubocop-ruby3_0", ["~> 3.0", ">= 3.0.2"], "r3_0-even-v20", nil, nil, nil],
44
+ ["ruby-2.7", "2.7.8", "ruby", nil, nil, nil, nil, "1.80.x", "18.4.1", ["~> 18.4", ">= 18.4.1"], "rubocop-ruby2_7", ["~> 3.0", ">= 3.0.5"], "r2_7-even-v18", "7.2.2.2", nil, nil],
45
+ ["ruby-3.0", "3.0.7", "ruby", nil, nil, "3.5.23", "2.5.23", nil, "20.4.1", ["~> 20.4", ">= 20.4.1"], "rubocop-ruby3_0", ["~> 3.0", ">= 3.0.5"], "r3_0-even-v20", nil, nil, nil],
46
46
  ["truffleruby-22.3", "truffleruby-22.3.1", "truffleruby", "3.0", "3.0", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, TRUFFLERUBY_NOTES],
47
- ["ruby-3.1", "3.1.7", "ruby", nil, nil, "3.6.9", "2.6.9", nil, "22.3.0", ["~> 22.3", ">= 22.3.0"], "rubocop-ruby3_1", ["~> 3.0", ">= 3.0.2"], "r3_1-even-v22", nil, nil, nil],
47
+ ["ruby-3.1", "3.1.7", "ruby", nil, nil, "3.6.9", "2.6.9", nil, "22.3.1", ["~> 22.3", ">= 22.3.1"], "rubocop-ruby3_1", ["~> 3.0", ">= 3.0.5"], "r3_1-even-v22", nil, nil, nil],
48
48
  ["truffleruby-23.0", "truffleruby-23.0.0", "truffleruby", "3.1", "3.0", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, TRUFFLERUBY_PSYCH_NOTES],
49
49
  ["jruby-9.4", "jruby-9.4.15.0", "jruby", "3.1", "3.1", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil],
50
- ["ruby-3.2", "3.2.9", "ruby", nil, nil, "3.7.x", "2.7.x", nil, "24.2.0", ["~> 24.2", ">= 24.2.0"], "rubocop-ruby3_2", ["~> 3.0", ">= 3.0.6"], "r3_2-even-v24", "8.0.x", nil, nil],
50
+ ["ruby-3.2", "3.2.9", "ruby", nil, nil, "3.7.x", "2.7.x", nil, "24.2.1", ["~> 24.2", ">= 24.2.1"], "rubocop-ruby3_2", ["~> 3.0", ">= 3.0.6"], "r3_2-even-v24", "8.0.x", nil, nil],
51
51
  ["truffleruby-23.1", "truffleruby-23.1.2", "truffleruby", "3.2", "3.1", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, TRUFFLERUBY_PSYCH_NOTES + ["Use the Ruby 3.1/Rails 7.2 appraisal in CI; Rails 8 failed on this engine."]],
52
52
  ["ruby-3.3", "3.3.9", "ruby", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil],
53
53
  ["truffleruby-24.2", "truffleruby-24.2.2", "truffleruby", "3.3", "3.3", nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, TRUFFLERUBY_NOTES],
@@ -3,7 +3,7 @@
3
3
  module Kettle
4
4
  module Rb
5
5
  module Version
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.2"
7
7
  end
8
8
  VERSION = Version::VERSION # Traditional Constant Location
9
9
  end
data/sig/kettle/rb.rbs CHANGED
@@ -1,6 +1,5 @@
1
1
  module Kettle
2
2
  module Rb
3
- VERSION: String
4
3
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
4
  end
6
5
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -43,20 +43,20 @@ dependencies:
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '2.2'
46
+ version: '2.3'
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 2.2.19
49
+ version: 2.3.4
50
50
  type: :development
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - "~>"
55
55
  - !ruby/object:Gem::Version
56
- version: '2.2'
56
+ version: '2.3'
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: 2.2.19
59
+ version: 2.3.4
60
60
  - !ruby/object:Gem::Dependency
61
61
  name: bundler-audit
62
62
  requirement: !ruby/object:Gem::Requirement
@@ -114,7 +114,7 @@ dependencies:
114
114
  version: '3.1'
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: 3.1.3
117
+ version: 3.1.4
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -124,7 +124,7 @@ dependencies:
124
124
  version: '3.1'
125
125
  - - ">="
126
126
  - !ruby/object:Gem::Version
127
- version: 3.1.3
127
+ version: 3.1.4
128
128
  - !ruby/object:Gem::Dependency
129
129
  name: kettle-test
130
130
  requirement: !ruby/object:Gem::Requirement
@@ -134,7 +134,7 @@ dependencies:
134
134
  version: '2.0'
135
135
  - - ">="
136
136
  - !ruby/object:Gem::Version
137
- version: 2.0.8
137
+ version: 2.0.10
138
138
  type: :development
139
139
  prerelease: false
140
140
  version_requirements: !ruby/object:Gem::Requirement
@@ -144,7 +144,7 @@ dependencies:
144
144
  version: '2.0'
145
145
  - - ">="
146
146
  - !ruby/object:Gem::Version
147
- version: 2.0.8
147
+ version: 2.0.10
148
148
  - !ruby/object:Gem::Dependency
149
149
  name: turbo_tests2
150
150
  requirement: !ruby/object:Gem::Requirement
@@ -154,7 +154,7 @@ dependencies:
154
154
  version: '3.1'
155
155
  - - ">="
156
156
  - !ruby/object:Gem::Version
157
- version: 3.1.5
157
+ version: 3.1.9
158
158
  type: :development
159
159
  prerelease: false
160
160
  version_requirements: !ruby/object:Gem::Requirement
@@ -164,7 +164,7 @@ dependencies:
164
164
  version: '3.1'
165
165
  - - ">="
166
166
  - !ruby/object:Gem::Version
167
- version: 3.1.5
167
+ version: 3.1.9
168
168
  - !ruby/object:Gem::Dependency
169
169
  name: ruby-progressbar
170
170
  requirement: !ruby/object:Gem::Requirement
@@ -188,7 +188,7 @@ dependencies:
188
188
  version: '1.0'
189
189
  - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: 1.0.3
191
+ version: 1.0.6
192
192
  type: :development
193
193
  prerelease: false
194
194
  version_requirements: !ruby/object:Gem::Requirement
@@ -198,7 +198,7 @@ dependencies:
198
198
  version: '1.0'
199
199
  - - ">="
200
200
  - !ruby/object:Gem::Version
201
- version: 1.0.3
201
+ version: 1.0.6
202
202
  - !ruby/object:Gem::Dependency
203
203
  name: gitmoji-regex
204
204
  requirement: !ruby/object:Gem::Requirement
@@ -208,7 +208,7 @@ dependencies:
208
208
  version: '2.0'
209
209
  - - ">="
210
210
  - !ruby/object:Gem::Version
211
- version: 2.0.3
211
+ version: 2.0.4
212
212
  type: :development
213
213
  prerelease: false
214
214
  version_requirements: !ruby/object:Gem::Requirement
@@ -218,8 +218,9 @@ dependencies:
218
218
  version: '2.0'
219
219
  - - ">="
220
220
  - !ruby/object:Gem::Version
221
- version: 2.0.3
222
- description: "\U0001F4CF TODO: Write a longer description or delete this line."
221
+ version: 2.0.4
222
+ description: "\U0001F4CF Provides the shared Ruby, engine, Rails, RuboCop, and RuboCop
223
+ LTS compatibility matrix used by Kettle-managed gems."
223
224
  email:
224
225
  - floss@galtzo.com
225
226
  executables: []
@@ -241,6 +242,7 @@ files:
241
242
  - CONTRIBUTING.md
242
243
  - FUNDING.md
243
244
  - LICENSE.md
245
+ - MIT.md
244
246
  - README.md
245
247
  - RUBOCOP.md
246
248
  - SECURITY.md
@@ -255,10 +257,10 @@ licenses:
255
257
  - MIT
256
258
  metadata:
257
259
  homepage_uri: https://kettle-rb.galtzo.com
258
- source_code_uri: https://github.com/kettle-dev/kettle-rb/tree/v0.1.0
259
- changelog_uri: https://github.com/kettle-dev/kettle-rb/blob/v0.1.0/CHANGELOG.md
260
+ source_code_uri: https://github.com/kettle-dev/kettle-rb/tree/v0.1.2
261
+ changelog_uri: https://github.com/kettle-dev/kettle-rb/blob/v0.1.2/CHANGELOG.md
260
262
  bug_tracker_uri: https://github.com/kettle-dev/kettle-rb/issues
261
- documentation_uri: https://www.rubydoc.info/gems/kettle-rb/0.1.0
263
+ documentation_uri: https://www.rubydoc.info/gems/kettle-rb/0.1.2
262
264
  funding_uri: https://github.com/sponsors/pboling
263
265
  wiki_uri: https://github.com/kettle-dev/kettle-rb/wiki
264
266
  news_uri: https://www.railsbling.com/tags/kettle-rb
@@ -266,7 +268,7 @@ metadata:
266
268
  rubygems_mfa_required: 'true'
267
269
  rdoc_options:
268
270
  - "--title"
269
- - "kettle-rb - \U0001F4CF TODO: Write a short summary, because RubyGems requires one."
271
+ - "kettle-rb - \U0001F4CF Shared Ruby compatibility matrix data for Kettle tooling."
270
272
  - "--main"
271
273
  - README.md
272
274
  - "--exclude"
@@ -287,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
287
289
  - !ruby/object:Gem::Version
288
290
  version: '0'
289
291
  requirements: []
290
- rubygems_version: 4.0.10
292
+ rubygems_version: 4.0.16
291
293
  specification_version: 4
292
- summary: "\U0001F4CF TODO: Write a short summary, because RubyGems requires one."
294
+ summary: "\U0001F4CF Shared Ruby compatibility matrix data for Kettle tooling."
293
295
  test_files: []
metadata.gz.sig CHANGED
Binary file