kettle-dev 1.0.24 → 1.0.26

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: 18a2a49f1f3ff6f56b45722fd639b3e105702efcdb5330b3f8e30fe4a3822944
4
- data.tar.gz: 612e2bc0921772f2509eecb2be905510492478930762f2d9c410e717dc469072
3
+ metadata.gz: 60e490b217e373ba759d3b36508e986e4016266139b49dfe5e9f7bf0d7cba7ce
4
+ data.tar.gz: 13dbbc7c888379ab09a88a246dd2fb9fbcd102c0a2994ca4b8529d184b7dafe3
5
5
  SHA512:
6
- metadata.gz: e716da16be08ba3a41d9a51323c13ec18f9ffd2eb84958d9d52e2f4e10b4e220102e6b880e410edbc161ad060036e5943d0718225f8e957a0432c42aae0fa30f
7
- data.tar.gz: 77b1cefdf23e5bfcc24dd66005026884f4aadefd4c749ee2d6bc07caeef02f0e4d295cb389c34bfb34e8bf6f7d4d5240a0229c8153d56163bb51ae1ced903b27
6
+ metadata.gz: 60469bea5a58f5a0049a915f22673337b42c9f4058fc21b5dcf2437526fd88c3992bcc15b6630f93aa44e34d34d86038cbb8fe3d495a13b6859c4a04a32404e3
7
+ data.tar.gz: '096333d5c8bb4e49669e258f3be823f24c23e53effadc2645a4cf00f3dc57e9d0e3f25dc64baf4bed1883b76a4e315f25974e1baa8c3d9de9b91a1e48f7d931c'
checksums.yaml.gz.sig CHANGED
Binary file
@@ -0,0 +1,14 @@
1
+ #
2
+ # DO NOT EDIT THIS FILE
3
+ #
4
+ # COPT THIS FILE TO .env.local
5
+ #
6
+ # That file is ignored by .gitignore. This file is not.
7
+ #
8
+ export DEBUG=false # do not allow byebug statements (override in .env.local)
9
+ export FLOSS_FUNDING_DEBUG=false # extra logging to help diagnose issues (override in .env.local)
10
+ export AUTOGEN_FIXTURE_CLEANUP=false # autogenerated gem fixture cleanup after every RSpec run
11
+ export GIT_HOOK_FOOTER_APPEND=false
12
+ export GIT_HOOK_FOOTER_APPEND_DEBUG=false
13
+ export GIT_HOOK_FOOTER_SENTINEL="⚡️ A message from a fellow meat-based-AI ⚡️"
14
+ export GITHUB_TOKEN=<your GH PAT, for the GHA console bin/rake ci:act - DO NOT EVER COMMIT IT>
@@ -0,0 +1,60 @@
1
+ default:
2
+ image: ruby
3
+
4
+ variables:
5
+ BUNDLE_INSTALL_FLAGS: "--quiet --jobs=$(nproc) --retry=3"
6
+ BUNDLE_FROZEN: "false" # No lockfile!
7
+ BUNDLE_GEMFILE: Appraisal.root.gemfile
8
+ K_SOUP_COV_DEBUG: true
9
+ K_SOUP_COV_DO: true
10
+ K_SOUP_COV_HARD: true
11
+ K_SOUP_COV_MIN_BRANCH: 100
12
+ K_SOUP_COV_MIN_LINE: 100
13
+ K_SOUP_COV_VERBOSE: true
14
+ K_SOUP_COV_FORMATTERS: "tty"
15
+ K_SOUP_COV_MULTI_FORMATTERS: true
16
+ K_SOUP_COV_COMMAND_NAME: "RSpec Coverage"
17
+
18
+ workflow:
19
+ rules:
20
+ # For merge requests, create a pipeline.
21
+ - if: '$CI_MERGE_REQUEST_IID'
22
+ # For the ` main ` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
23
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
24
+ # For tags, create a pipeline.
25
+ - if: '$CI_COMMIT_TAG'
26
+
27
+ .current_ruby_template: &current_ruby_template
28
+ image: ruby:${RUBY_VERSION}
29
+ stage: test
30
+ script:
31
+ # || true so we don't fail here, because it'll probably work even if the gem update fails
32
+ - gem update --system > /dev/null 2>&1 || true
33
+ - mkdir -p vendor/bundle
34
+ - bundle config set path 'vendor/bundle'
35
+ - chmod +t -R vendor/bundle
36
+ - chmod o-w -R vendor/bundle
37
+ # Setup appraisal2
38
+ - bundle install
39
+ # Bundle a specific appraisal
40
+ - bundle exec appraisal unlocked_deps bundle install
41
+ # Light smoke test
42
+ - bundle exec appraisal unlocked_deps bin/rake --tasks
43
+ # Run tests, skipping those that won't work in CI
44
+ - >
45
+ bundle exec appraisal unlocked_deps \
46
+ bin/rspec spec \
47
+ --tag \~ci_skip \
48
+ --format progress \
49
+ --format RspecJunitFormatter
50
+
51
+ cache:
52
+ key: ${CI_JOB_IMAGE}
53
+ paths:
54
+ - vendor/ruby
55
+
56
+ current-ruby:
57
+ <<: *current_ruby_template
58
+ parallel:
59
+ matrix:
60
+ - RUBY_VERSION: ["3.2", "3.3", "3.4"]
data/Appraisals.example CHANGED
@@ -1,9 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # HOW TO UPDATE APPRAISALS:
4
- # BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
5
- # BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
6
- # bundle exec rake rubocop_gradual:autocorrect
3
+ # HOW TO UPDATE APPRAISALS (will run rubocop_gradual's autocorrect afterward):
4
+ # bin/rake appraisals:update
7
5
 
8
6
  # Lock/Unlock Deps Pattern
9
7
  #
data/CHANGELOG.md CHANGED
@@ -24,6 +24,25 @@ Please file a bug if you notice a violation of semantic versioning.
24
24
  ### Fixed
25
25
  ### Security
26
26
 
27
+ ## [1.0.26] - 2025-09-01
28
+ - TAG: [v1.0.26][1.0.26t]
29
+ - COVERAGE: 97.81% -- 2630/2689 lines in 22 files
30
+ - BRANCH COVERAGE: 82.40% -- 1100/1335 branches in 22 files
31
+ - 75.00% documented
32
+ ### Fixed
33
+ - .env.local.example is now included in the packaged gem
34
+ - making the copy by install / template tasks possible
35
+
36
+ ## [1.0.25] - 2025-08-31
37
+ - TAG: [v1.0.25][1.0.25t]
38
+ - COVERAGE: 97.81% -- 2630/2689 lines in 22 files
39
+ - BRANCH COVERAGE: 82.40% -- 1100/1335 branches in 22 files
40
+ - 75.00% documented
41
+ ### Added
42
+ - test that .env.local.example is copied by install / template tasks
43
+ ### Changed
44
+ - update Appraisals.example template's instructions for updating appraisals
45
+
27
46
  ## [1.0.24] - 2025-08-31
28
47
  - TAG: [v1.0.24][1.0.24t]
29
48
  - COVERAGE: 97.51% -- 2625/2692 lines in 22 files
@@ -374,7 +393,11 @@ Please file a bug if you notice a violation of semantic versioning.
374
393
  - Selecting will run the selected workflow via `act`
375
394
  - This may move to its own gem in the future.
376
395
 
377
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.24...HEAD
396
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.26...HEAD
397
+ [1.0.26]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.25...v1.0.26
398
+ [1.0.26t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.26
399
+ [1.0.25]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.24...v1.0.25
400
+ [1.0.25t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.25
378
401
  [1.0.24]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.23...v1.0.24
379
402
  [1.0.24t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.24
380
403
  [1.0.23]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.22...v1.0.23
data/README.md CHANGED
@@ -732,7 +732,7 @@ Thanks for RTFM. ☺️
732
732
  [📌gitmoji]:https://gitmoji.dev
733
733
  [📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
734
734
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
735
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.692-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
735
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.689-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
736
736
  [🔐security]: SECURITY.md
737
737
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
738
738
  [📄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.692-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
508
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-2.689-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.0.24 - 2025-08-31
3
+ # kettle-dev Rakefile v1.0.26 - 2025-09-01
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.0.24"
9
+ VERSION = "1.0.26"
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.24
4
+ version: 1.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -227,6 +227,7 @@ extra_rdoc_files:
227
227
  - SECURITY.md
228
228
  files:
229
229
  - ".devcontainer/devcontainer.json"
230
+ - ".env.local.example"
230
231
  - ".envrc"
231
232
  - ".git-hooks/commit-msg"
232
233
  - ".git-hooks/commit-subjects-goalie.txt"
@@ -256,6 +257,7 @@ files:
256
257
  - ".github/workflows/unlocked_deps.yml"
257
258
  - ".github/workflows/unsupported.yml"
258
259
  - ".gitignore"
260
+ - ".gitlab-ci.yml.example"
259
261
  - ".junie/guidelines-rbs.md"
260
262
  - ".junie/guidelines.md"
261
263
  - ".opencollective.yml"
@@ -351,10 +353,10 @@ licenses:
351
353
  - MIT
352
354
  metadata:
353
355
  homepage_uri: https://kettle-dev.galtzo.com/
354
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.0.24
355
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.0.24/CHANGELOG.md
356
+ source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.0.26
357
+ changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.0.26/CHANGELOG.md
356
358
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
357
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.0.24
359
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.0.26
358
360
  funding_uri: https://github.com/sponsors/pboling
359
361
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
360
362
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file