kettle-dev 1.1.0 → 1.1.1

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: 7ebcfa36b8ea0a35494d287786196a8d8318b8173c204761024313bf8f47427d
4
- data.tar.gz: f0a9336ef171cbf601db976e1d6968e0653118b75aebe67467a7fbb5a75bb5c3
3
+ metadata.gz: 0a5adcf9f057ec385ca20f8441e9cf7cf45a3c28916146dc828342cc280a7275
4
+ data.tar.gz: 9c85ede6e630a006c83d26db02f2938be131fb227b3aa76e1e8f531f616edf3a
5
5
  SHA512:
6
- metadata.gz: 180dbf8af4b59be5cdfca9e96bebe9c9fabff568de0d633e7650975a59b1c59ba3f8f1b23105d35519a5c39212ef31625801e76562f5dd99f15dee0cbededb2a
7
- data.tar.gz: e61a9a80d171187880f754633460dd1438d6eac481bb93a19c1cd0161111b161636e6440a18fbde8a28a110534839d3860e1055e0d9e4b900ca42350c87010e0
6
+ metadata.gz: ae3e344c567670c9817d9724bddbe08f926564e906843ae02bb95110bb2fce3ae3769511a5106e73bcb0abf93c2a1a64cf876c5d82bd6052adaa6046cd5eeecb
7
+ data.tar.gz: 9ccad75834eb783f912660a214416e3fd53d8229955a69026c013fbcb4ddfd6b43bc211ace28e7a0e7dec08f41a2c3463e862515f7fae0e9059111c49c478d74
checksums.yaml.gz.sig CHANGED
Binary file
@@ -0,0 +1,11 @@
1
+ require "kettle/soup/cover/config"
2
+
3
+ # Minimum coverage thresholds are set by kettle-soup-cover.
4
+ # It is controlled by ENV variables, which are set in .envrc and loaded via `direnv allow`
5
+ # If the values for minimum coverage need to change, they should be changed both there,
6
+ # and in 2 places in .github/workflows/coverage.yml.
7
+ SimpleCov.start do
8
+ track_files "lib/**/*.rb"
9
+ track_files "lib/**/*.rake"
10
+ track_files "exe/*.rb"
11
+ end
data/CHANGELOG.md CHANGED
@@ -24,6 +24,18 @@ Please file a bug if you notice a violation of semantic versioning.
24
24
  ### Fixed
25
25
  ### Security
26
26
 
27
+ ## [1.1.1] - 2025-09-02
28
+ - TAG: [v1.1.1][1.1.1t]
29
+ - COVERAGE: 97.04% -- 2655/2736 lines in 21 files
30
+ - BRANCH COVERAGE: 82.21% -- 1109/1349 branches in 21 files
31
+ - 76.81% documented
32
+ ### Added
33
+ - .simplecov.example - keeps it generic
34
+ - improved documentation on automatic release script
35
+ - .gitlab-ci.yml documentation
36
+ ### Fixed
37
+ - reduce extra leading whitespace in info table column 2
38
+
27
39
  ## [1.1.0] - 2025-09-02
28
40
  - TAG: [v1.1.0][1.1.0t]
29
41
  - COVERAGE: 97.03% -- 2649/2730 lines in 21 files
@@ -416,7 +428,9 @@ Please file a bug if you notice a violation of semantic versioning.
416
428
  - Selecting will run the selected workflow via `act`
417
429
  - This may move to its own gem in the future.
418
430
 
419
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.0...HEAD
431
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.1...HEAD
432
+ [1.1.1]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.0...v1.1.1
433
+ [1.1.1t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.1
420
434
  [1.1.0]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.27...v1.1.0
421
435
  [1.1.0t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.0
422
436
  [1.0.27]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.26...v1.0.27
data/CONTRIBUTING.md CHANGED
@@ -146,7 +146,9 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th
146
146
 
147
147
  #### Automated process
148
148
 
149
- Run `bundle exec kettle-release`.
149
+ 1. Update version.rb to contian the correct version-to-be-released.
150
+ 2. Run `bundle exec kettle-changelog`.
151
+ 3. Run `bundle exec kettle-release`.
150
152
 
151
153
  #### Manual process
152
154
 
data/README.md CHANGED
@@ -750,7 +750,7 @@ Thanks for RTFM. ☺️
750
750
  [📌gitmoji]:https://gitmoji.dev
751
751
  [📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
752
752
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
753
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.730-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
753
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.736-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
754
754
  [🔐security]: SECURITY.md
755
755
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
756
756
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
data/README.md.example CHANGED
@@ -505,7 +505,7 @@ Thanks for RTFM. ☺️
505
505
  [📌gitmoji]:https://gitmoji.dev
506
506
  [📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
507
507
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
508
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.730-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
508
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.736-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
509
509
  [🔐security]: SECURITY.md
510
510
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
511
511
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.0 - 2025-09-02
3
+ # kettle-dev Rakefile v1.1.1 - 2025-09-02
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -66,7 +66,7 @@ module Kettle
66
66
  end
67
67
  end
68
68
 
69
- # Fix leading <br/> in MRI rows and remove rows that end up empty
69
+ # Fix leading <br/> in MRI rows and remove rows that end up empty. Also normalize leading whitespace in badge cell to a single space.
70
70
  content = content.lines.map { |ln|
71
71
  if ln.start_with?("| Works with MRI Ruby")
72
72
  cells = ln.split("|", -1)
@@ -82,6 +82,14 @@ module Kettle
82
82
  cleaned = badge_cell.sub(/\A\s*<br\/>\s*/i, "")
83
83
  cells[2] = " #{cleaned}" # prefix with a single space
84
84
  cells.join("|")
85
+ elsif badge_cell =~ /\A[ \t]{2,}\S/
86
+ # Collapse multiple leading spaces/tabs to exactly one
87
+ cells[2] = " " + badge_cell.lstrip
88
+ cells.join("|")
89
+ elsif badge_cell =~ /\A[ \t]+\S/
90
+ # If there is any leading whitespace at all, normalize it to exactly one space
91
+ cells[2] = " " + badge_cell.lstrip
92
+ cells.join("|")
85
93
  else
86
94
  ln
87
95
  end
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.1.0"
9
+ VERSION = "1.1.1"
10
10
 
11
11
  module_function
12
12
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -252,6 +252,7 @@ files:
252
252
  - ".rspec"
253
253
  - ".rubocop.yml"
254
254
  - ".simplecov"
255
+ - ".simplecov.example"
255
256
  - ".tool-versions"
256
257
  - ".yard_gfm_support.rb"
257
258
  - ".yardopts"
@@ -342,10 +343,10 @@ licenses:
342
343
  - MIT
343
344
  metadata:
344
345
  homepage_uri: https://kettle-dev.galtzo.com/
345
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.0
346
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.0/CHANGELOG.md
346
+ source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.1
347
+ changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.1/CHANGELOG.md
347
348
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
348
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.0
349
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.1
349
350
  funding_uri: https://github.com/sponsors/pboling
350
351
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
351
352
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file