stone_checksums 1.0.4 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99eb338e4a34ea5de7b08fa1af61cac3e9fe7fa2a0f83c2c490056344a333cde
4
- data.tar.gz: de183af7aaba25df386afa555b9c58ff1ad59e10a010452526856ccf94abf13b
3
+ metadata.gz: 536be37d387a7b126273a47f776458d01d5e81c83e621fd355bbda62da0eafc6
4
+ data.tar.gz: b7ddeb0ce5a2d19e89504cf03c895248bd30eac0c7f5fae1bce047b2338e4a42
5
5
  SHA512:
6
- metadata.gz: b6ae36d2a139672b444208e058526cd2c34a51362909984cf62f549bb58e2dc56c32783457b72d0d4c98fb6c16f424d695163bcc75767028625659d7d97f37aa
7
- data.tar.gz: a628039c0fdc66e75c77dc1778fd10eab3f4c83ab1f35b26fa8e1b52b1c6f2c7b4ceaa3a78f664c5fc5dd78ce5e546e7b69aa4f788169786a8fdef56dd0d0bad
6
+ metadata.gz: e4b02ad71476ae7557ab89a3579e3a17403a2fe8fa1e2594df93910dbbe1fc376aa93793d6da064c843b32a7c2bb0b666e4262c218e5b97951d8ed9215a1c06c
7
+ data.tar.gz: bf288f408fbd75c28bb4a66f96d687a1035d9a80ade261063c0e85c5ddb7036bc3c3312f5d910b8081086cfd7eaf9d787c6f5fc52ae7ec7f28cda35d943d8c65
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,30 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.0.6] - 2026-07-11
34
+
35
+ - TAG: [v1.0.6][1.0.6t]
36
+ - COVERAGE: 98.45% -- 127/129 lines in 8 files
37
+ - BRANCH COVERAGE: 94.74% -- 36/38 branches in 8 files
38
+ - 54.17% documented
39
+
40
+ ### Changed
41
+
42
+ - `require "stone_checksums"` and `require "gem_checksums"` no longer load
43
+ `version_gem` by default; require `stone_checksums/version_gem` or
44
+ `gem_checksums/version_gem` for the optional `VersionGem::Basic` extension.
45
+
46
+ ## [1.0.5] - 2026-07-02
47
+
48
+ - TAG: [v1.0.5][1.0.5t]
49
+ - COVERAGE: 99.19% -- 123/124 lines in 6 files
50
+ - BRANCH COVERAGE: 94.74% -- 36/38 branches in 6 files
51
+ - 54.17% documented
52
+
53
+ ### Fixed
54
+
55
+ - Package configured license files in gem release file lists.
56
+
33
57
  ## [1.0.4] - 2026-06-28
34
58
 
35
59
  - TAG: [v1.0.4][1.0.4t]
@@ -99,7 +123,11 @@ Please file a bug if you notice a violation of semantic versioning.
99
123
 
100
124
  - Initial release
101
125
 
102
- [Unreleased]: https://github.com/galtzo-floss/stone_checksums/compare/v1.0.4...HEAD
126
+ [Unreleased]: https://github.com/galtzo-floss/stone_checksums/compare/v1.0.6...HEAD
127
+ [1.0.6]: https://github.com/galtzo-floss/stone_checksums/compare/v1.0.5...v1.0.6
128
+ [1.0.6t]: https://github.com/galtzo-floss/stone_checksums/releases/tag/v1.0.6
129
+ [1.0.5]: https://github.com/galtzo-floss/stone_checksums/compare/v1.0.4...v1.0.5
130
+ [1.0.5t]: https://github.com/galtzo-floss/stone_checksums/releases/tag/v1.0.5
103
131
  [1.0.4]: https://github.com/galtzo-floss/stone_checksums/compare/v1.0.2...v1.0.4
104
132
  [1.0.4t]: https://github.com/galtzo-floss/stone_checksums/releases/tag/v1.0.4
105
133
  [1.0.2]: https://gitlab.com/galtzo-floss/stone_checksums/-/compare/v1.0.1...v1.0.2
data/CONTRIBUTING.md CHANGED
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
131
131
  They are created and updated with the commands:
132
132
 
133
133
  ```console
134
- bin/rake appraisal:update
134
+ bin/rake appraisal:generate
135
135
  ```
136
136
 
137
+ Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
138
+ appraisal locks.
139
+
137
140
  If you need to reset all gemfiles/*.gemfile.lock files:
138
141
 
139
142
  ```console
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
@@ -1,6 +1,6 @@
1
1
  <a href="https://github.com/galtzo-floss"><img alt="galtzo-floss Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px.svg" width="14%" align="right"/></a>
2
2
 
3
- # 🗿 StoneChecksums
3
+ # 🦗 StoneChecksums
4
4
 
5
5
  [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![CodeCov Test Coverage][🏀codecovi]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov] [![QLTY Maintainability][🏀qlty-mnti]][🏀qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![Apache SkyWalking Eyes License Compatibility Check][🚎15-🪪-wfi]][🚎15-🪪-wf]
6
6
 
@@ -543,7 +543,7 @@ Thanks for RTFM. ☺️
543
543
  [📌gitmoji]: https://gitmoji.dev
544
544
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
545
545
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
546
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.124-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
546
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.129-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
547
547
  [🔐security]: https://github.com/galtzo-floss/stone_checksums/blob/main/SECURITY.md
548
548
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
549
549
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -569,7 +569,7 @@ Thanks for RTFM. ☺️
569
569
  | Field | Value |
570
570
  |---|---|
571
571
  | Package | stone_checksums |
572
- | Description | 🗿 Generate both SHA256 & SHA512 checksums into the checksums directory, and git commit them.<br>gem install stone_checksums<br>Then, use the rake task or the script:<br>rake build:generate_checksums<br>gem_checksums<br>Control options with ENV variables!<br>Fund overlooked open source projects - bottom of stack, dev/test dependencies: floss-funding.dev |
572
+ | Description | 🦗 Generate both SHA256 & SHA512 checksums into the checksums directory, and git commit them.<br>gem install stone_checksums<br>Then, use the rake task or the script:<br>rake build:generate_checksums<br>gem_checksums<br>Control options with ENV variables!<br>Fund overlooked open source projects - bottom of stack, dev/test dependencies: floss-funding.dev |
573
573
  | Homepage | https://github.com/galtzo-floss/stone_checksums |
574
574
  | Source | https://github.com/galtzo-floss/stone_checksums |
575
575
  | License | `MIT` |
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "version_gem"
4
+ require_relative "version"
5
+
6
+ GemChecksums::Version.class_eval do
7
+ extend VersionGem::Basic
8
+ end
data/lib/gem_checksums.rb CHANGED
@@ -5,9 +5,6 @@ require "digest/sha2"
5
5
  require "fileutils"
6
6
  require "rubygems/package"
7
7
 
8
- # external gems
9
- require "version_gem"
10
-
11
8
  # this library's version
12
9
  require_relative "gem_checksums/version"
13
10
 
@@ -261,8 +258,4 @@ rm -f #{digest256_32bit_path}
261
258
  module_function :validate_package_against_project?
262
259
  end
263
260
 
264
- GemChecksums::Version.class_eval do
265
- extend VersionGem::Basic
266
- end
267
-
268
261
  GemChecksums.install_tasks if GemChecksums::RUNNING_AS == "rake"
@@ -2,7 +2,7 @@
2
2
 
3
3
  module StoneChecksums
4
4
  module Version
5
- VERSION = "1.0.4"
5
+ VERSION = "1.0.6"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "version_gem"
4
+ require_relative "version"
5
+
6
+ StoneChecksums::Version.class_eval do
7
+ extend VersionGem::Basic
8
+ end
@@ -52,7 +52,6 @@ module StoneChecksums
52
52
  end
53
53
  end
54
54
 
55
- # Extend the Version module with helpers from version_gem
56
55
  StoneChecksums::Version.class_eval do
57
56
  extend VersionGem::Basic
58
57
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stone_checksums
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - "|7eter l-|. l3oling"
@@ -63,20 +63,20 @@ dependencies:
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: '2.2'
66
+ version: '2.3'
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: 2.2.15
69
+ version: 2.3.1
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: '2.2'
76
+ version: '2.3'
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: 2.2.15
79
+ version: 2.3.1
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: bundler-audit
82
82
  requirement: !ruby/object:Gem::Requirement
@@ -134,7 +134,7 @@ dependencies:
134
134
  version: '3.1'
135
135
  - - ">="
136
136
  - !ruby/object:Gem::Version
137
- version: 3.1.3
137
+ version: 3.1.4
138
138
  type: :development
139
139
  prerelease: false
140
140
  version_requirements: !ruby/object:Gem::Requirement
@@ -144,7 +144,7 @@ dependencies:
144
144
  version: '3.1'
145
145
  - - ">="
146
146
  - !ruby/object:Gem::Version
147
- version: 3.1.3
147
+ version: 3.1.4
148
148
  - !ruby/object:Gem::Dependency
149
149
  name: kettle-test
150
150
  requirement: !ruby/object:Gem::Requirement
@@ -154,7 +154,7 @@ dependencies:
154
154
  version: '2.0'
155
155
  - - ">="
156
156
  - !ruby/object:Gem::Version
157
- version: 2.0.6
157
+ version: 2.0.10
158
158
  type: :development
159
159
  prerelease: false
160
160
  version_requirements: !ruby/object:Gem::Requirement
@@ -164,7 +164,7 @@ dependencies:
164
164
  version: '2.0'
165
165
  - - ">="
166
166
  - !ruby/object:Gem::Version
167
- version: 2.0.6
167
+ version: 2.0.10
168
168
  - !ruby/object:Gem::Dependency
169
169
  name: turbo_tests2
170
170
  requirement: !ruby/object:Gem::Requirement
@@ -174,7 +174,7 @@ dependencies:
174
174
  version: '3.1'
175
175
  - - ">="
176
176
  - !ruby/object:Gem::Version
177
- version: 3.1.5
177
+ version: 3.1.7
178
178
  type: :development
179
179
  prerelease: false
180
180
  version_requirements: !ruby/object:Gem::Requirement
@@ -184,7 +184,7 @@ dependencies:
184
184
  version: '3.1'
185
185
  - - ">="
186
186
  - !ruby/object:Gem::Version
187
- version: 3.1.5
187
+ version: 3.1.7
188
188
  - !ruby/object:Gem::Dependency
189
189
  name: ruby-progressbar
190
190
  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,8 @@ dependencies:
218
218
  version: '2.0'
219
219
  - - ">="
220
220
  - !ruby/object:Gem::Version
221
- version: 2.0.3
222
- description: "\U0001F5FF Generate both SHA256 & SHA512 checksums into the checksums
221
+ version: 2.0.4
222
+ description: "\U0001F997 Generate both SHA256 & SHA512 checksums into the checksums
223
223
  directory, and git commit them.\n gem install stone_checksums\nThen, use the rake
224
224
  task or the script:\n rake build:generate_checksums\n gem_checksums\nControl options
225
225
  with ENV variables!\nFund overlooked open source projects - bottom of stack, dev/test
@@ -246,6 +246,7 @@ files:
246
246
  - CONTRIBUTING.md
247
247
  - FUNDING.md
248
248
  - LICENSE.md
249
+ - MIT.md
249
250
  - README.md
250
251
  - RUBOCOP.md
251
252
  - SECURITY.md
@@ -255,8 +256,10 @@ files:
255
256
  - lib/gem_checksums/rakelib/gem_checksums.rake
256
257
  - lib/gem_checksums/tasks.rb
257
258
  - lib/gem_checksums/version.rb
259
+ - lib/gem_checksums/version_gem.rb
258
260
  - lib/stone_checksums.rb
259
261
  - lib/stone_checksums/version.rb
262
+ - lib/stone_checksums/version_gem.rb
260
263
  - sig/gem_checksums.rbs
261
264
  - sig/stone_checksums.rbs
262
265
  - sig/stone_checksums/version.rbs
@@ -265,10 +268,10 @@ licenses:
265
268
  - MIT
266
269
  metadata:
267
270
  homepage_uri: https://stone-checksums.galtzo.com
268
- source_code_uri: https://github.com/galtzo-floss/stone_checksums/tree/v1.0.4
269
- changelog_uri: https://github.com/galtzo-floss/stone_checksums/blob/v1.0.4/CHANGELOG.md
271
+ source_code_uri: https://github.com/galtzo-floss/stone_checksums/tree/v1.0.6
272
+ changelog_uri: https://github.com/galtzo-floss/stone_checksums/blob/v1.0.6/CHANGELOG.md
270
273
  bug_tracker_uri: https://github.com/galtzo-floss/stone_checksums/issues
271
- documentation_uri: https://www.rubydoc.info/gems/stone_checksums/1.0.4
274
+ documentation_uri: https://www.rubydoc.info/gems/stone_checksums/1.0.6
272
275
  funding_uri: https://github.com/sponsors/pboling
273
276
  wiki_uri: https://github.com/galtzo-floss/stone_checksums/wiki
274
277
  news_uri: https://www.railsbling.com/tags/stone_checksums
@@ -276,7 +279,7 @@ metadata:
276
279
  rubygems_mfa_required: 'true'
277
280
  rdoc_options:
278
281
  - "--title"
279
- - "stone_checksums - \U0001F5FF Generate both SHA256 & SHA512 checksums of RubyGem
282
+ - "stone_checksums - \U0001F997 Generate both SHA256 & SHA512 checksums of RubyGem
280
283
  libraries"
281
284
  - "--main"
282
285
  - README.md
@@ -300,5 +303,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
300
303
  requirements: []
301
304
  rubygems_version: 4.0.10
302
305
  specification_version: 4
303
- summary: "\U0001F5FF Generate both SHA256 & SHA512 checksums of RubyGem libraries"
306
+ summary: "\U0001F997 Generate both SHA256 & SHA512 checksums of RubyGem libraries"
304
307
  test_files: []
metadata.gz.sig CHANGED
Binary file