kettle-dev 1.0.21 → 1.0.22

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: c207c08e4e9933149728224c355077d0023be3794639f3e9eae9132207fb403b
4
- data.tar.gz: 82c963e4d47084fdce04e9951e46b77109d782c2d206cb46b39f0f8965509a6e
3
+ metadata.gz: 4a2319467e7b37ae135d36dd2d9750de33b700cad93bfbcad890c51002489941
4
+ data.tar.gz: 30eb41fdaa0a113665d1050d3f24e46ce715b5a019d4987d4391acea8fd62de6
5
5
  SHA512:
6
- metadata.gz: 422cd88655f41ceff9b98af93024ae86d107f0311238bd79630c88e576b4fc8b0e4023bd4804ec58a334e43a0c89dd21a1fc6ac4e410786298d7ed688ee28317
7
- data.tar.gz: 36ee1bd93cc0c8422b292bbd616b277cba903feb5194cdca82167f3e4e40cce086860f76f7a5c8bb748e36e329851abbe843ebcb047cc6aed7e0ae073e80b829
6
+ metadata.gz: aefe32f787237bc2c1e3a07491eee3a126b4ecff7f76cff3b1a38d14c46e1dd06c0ba37bb88855430b305aa5c9cfd067f6c1bd37d7dd72ff29f62faf55dfe0c1
7
+ data.tar.gz: 0f9e5277c86c888aba4bb32286646f86a269380f0a1d526810ba2ddc6723d89bbeb405e00a29c8b29b6dbbb7d77248e0e76250f04143f8cf836aef0f9ce6a0ed
checksums.yaml.gz.sig CHANGED
Binary file
@@ -77,9 +77,21 @@ jobs:
77
77
  # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
78
78
  # We need to do this first to get appraisal installed.
79
79
  # NOTE: This does not use the primary Gemfile at all.
80
- - name: Install Root Appraisal
80
+ - name: "Install Root Appraisal"
81
81
  run: bundle
82
- - name: Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
82
+
83
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
84
+ id: bundleAttempt1
85
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle
86
+ # Continue to the next step on failure
87
+ continue-on-error: true
88
+
89
+ # Effectively an automatic retry of the previous step.
90
+ - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
91
+ id: bundleAttempt2
92
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
93
+ if: steps.bundleAttempt1.outcome == 'failure'
83
94
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle
95
+
84
96
  - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
85
97
  run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
@@ -0,0 +1,97 @@
1
+ name: Heads
2
+
3
+ permissions:
4
+ contents: read
5
+
6
+ env:
7
+ K_SOUP_COV_DO: false
8
+
9
+ on:
10
+ push:
11
+ branches:
12
+ - 'main'
13
+ - '*-stable'
14
+ tags:
15
+ - '!*' # Do not execute on tags
16
+ pull_request:
17
+ branches:
18
+ - '*'
19
+ # Allow manually triggering the workflow.
20
+ workflow_dispatch:
21
+
22
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
23
+ concurrency:
24
+ # The concurrency group contains the workflow name and the branch name.
25
+ group: "${{ github.workflow }}-${{ github.ref }}"
26
+ cancel-in-progress: true
27
+
28
+ jobs:
29
+ test:
30
+ if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
31
+ name: Specs ${{ matrix.ruby }}@${{ matrix.appraisal }}${{ matrix.name_extra || '' }}
32
+ runs-on: ubuntu-latest
33
+ continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }}
34
+ env: # $BUNDLE_GEMFILE must be set at job level, so it is set for all steps
35
+ BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}.gemfile
36
+ strategy:
37
+ fail-fast: true
38
+ matrix:
39
+ include:
40
+ # NOTE: Heads use default rubygems / bundler; their defaults are custom, unreleased, and from the future!
41
+ # ruby-head
42
+ - ruby: "ruby-head"
43
+ appraisal: "head"
44
+ exec_cmd: "rake test"
45
+ gemfile: "Appraisal.root"
46
+ rubygems: default
47
+ bundler: default
48
+
49
+ # truffleruby-head
50
+ - ruby: "truffleruby-head"
51
+ appraisal: "head"
52
+ exec_cmd: "rake test"
53
+ gemfile: "Appraisal.root"
54
+ rubygems: default
55
+ bundler: default
56
+
57
+ # jruby-head
58
+ - ruby: "jruby-head"
59
+ appraisal: "head"
60
+ exec_cmd: "rake test"
61
+ gemfile: "Appraisal.root"
62
+ rubygems: default
63
+ bundler: default
64
+
65
+ steps:
66
+ - name: Checkout
67
+ uses: actions/checkout@v5
68
+
69
+ - name: Setup Ruby & RubyGems
70
+ uses: ruby/setup-ruby@v1
71
+ with:
72
+ ruby-version: ${{ matrix.ruby }}
73
+ rubygems: ${{ matrix.rubygems }}
74
+ bundler: ${{ matrix.bundler }}
75
+ bundler-cache: false
76
+
77
+ # Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
78
+ # We need to do this first to get appraisal installed.
79
+ # NOTE: This does not use the primary Gemfile at all.
80
+ - name: "Install Root Appraisal"
81
+ run: bundle
82
+
83
+ - name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
84
+ id: bundleAttempt1
85
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle
86
+ # Continue to the next step on failure
87
+ continue-on-error: true
88
+
89
+ # Effectively an automatic retry of the previous step.
90
+ - name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
91
+ id: bundleAttempt2
92
+ # If bundleAttempt1 failed, try again here; Otherwise skip.
93
+ if: steps.bundleAttempt1.outcome == 'failure'
94
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle
95
+
96
+ - name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
97
+ run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
data/Appraisals CHANGED
@@ -32,6 +32,8 @@ end
32
32
  # Split into discrete appraisals if one of them needs a dependency locked discretely.
33
33
  appraise "head" do
34
34
  gem "erb"
35
+ # See: https://github.com/vcr/vcr/issues/1057
36
+ gem "cgi", ">= 0.5"
35
37
  gem "mutex_m", ">= 0.2"
36
38
  gem "stringio", ">= 3.0"
37
39
  gem "benchmark", "~> 0.4", ">= 0.4.1"
data/CHANGELOG.md CHANGED
@@ -24,6 +24,16 @@ Please file a bug if you notice a violation of semantic versioning.
24
24
  ### Fixed
25
25
  ### Security
26
26
 
27
+ ## [1.0.22] - 2025-08-30
28
+ - TAG: [v1.0.22][1.0.22t]
29
+ - COVERAGE: 97.82% -- 2375/2428 lines in 20 files
30
+ - BRANCH COVERAGE: 81.34% -- 972/1195 branches in 20 files
31
+ - 76.23% documented
32
+ ### Added
33
+ - improved documentation
34
+ - example version of heads workflow
35
+ - give heads two attempts to succeed
36
+
27
37
  ## [1.0.21] - 2025-08-30
28
38
  - TAG: [v1.0.21][1.0.21t]
29
39
  - COVERAGE: 97.82% -- 2375/2428 lines in 20 files
@@ -328,7 +338,7 @@ Please file a bug if you notice a violation of semantic versioning.
328
338
  - Selecting will run the selected workflow via `act`
329
339
  - This may move to its own gem in the future.
330
340
 
331
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.21...HEAD
341
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.22...HEAD
332
342
  [1.0.0]: https://github.com/kettle-rb/kettle-dev/compare/a427c302df09cfe4253a7c8d400333f9a4c1a208...v1.0.0
333
343
  [1.0.0t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.0
334
344
  [1.0.1]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.0...v1.0.1
@@ -373,3 +383,5 @@ Please file a bug if you notice a violation of semantic versioning.
373
383
  [1.0.20t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.20
374
384
  [1.0.21]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.20...v1.0.21
375
385
  [1.0.21t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.21
386
+ [1.0.22]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.21...v1.0.22
387
+ [1.0.22t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.22
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.0.21 - 2025-08-30
3
+ # kettle-dev Rakefile v1.0.22 - 2025-08-30
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
 
32
32
  # Linux distros often package gems and securely certify them independent
33
33
  # of the official RubyGem certification process. Allowed via ENV["SKIP_GEM_SIGNING"]
34
- # Ref: https://gitlab.com/oauth-xx/version_gem/-/issues/3
34
+ # Ref: https://gitlab.com/ruby-oauth/version_gem/-/issues/3
35
35
  # Hence, only enable signing if `SKIP_GEM_SIGNING` is not set in ENV.
36
36
  # See CONTRIBUTING.md
37
37
  unless ENV.include?("SKIP_GEM_SIGNING")
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.0.21"
9
+ VERSION = "1.0.22"
10
10
  end
11
11
  end
12
12
  end
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.0.21
4
+ version: 1.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -243,6 +243,7 @@ files:
243
243
  - ".github/workflows/dependency-review.yml"
244
244
  - ".github/workflows/discord-notifier.yml"
245
245
  - ".github/workflows/heads.yml"
246
+ - ".github/workflows/heads.yml.example"
246
247
  - ".github/workflows/jruby.yml"
247
248
  - ".github/workflows/jruby.yml.example"
248
249
  - ".github/workflows/legacy.yml"
@@ -345,10 +346,10 @@ licenses:
345
346
  - MIT
346
347
  metadata:
347
348
  homepage_uri: https://kettle-dev.galtzo.com/
348
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.0.21
349
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.0.21/CHANGELOG.md
349
+ source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.0.22
350
+ changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.0.22/CHANGELOG.md
350
351
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
351
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.0.21
352
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.0.22
352
353
  funding_uri: https://github.com/sponsors/pboling
353
354
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
354
355
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file