kettle-dev 1.0.25 → 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: 17271b80f11810960aff2bed47dae41fd383c2e70f9791134405b7b15c0c4989
4
- data.tar.gz: b49ddd6a9f57504713789b05b814293d2ef9ac05b0755245129b05234e288eca
3
+ metadata.gz: 60e490b217e373ba759d3b36508e986e4016266139b49dfe5e9f7bf0d7cba7ce
4
+ data.tar.gz: 13dbbc7c888379ab09a88a246dd2fb9fbcd102c0a2994ca4b8529d184b7dafe3
5
5
  SHA512:
6
- metadata.gz: 291245d371efa3869f70b66e33f9059108616283ab29204158c198005473db150fbbbbde3c7ac53bea6a8175cb3a90235d2fbb7a85c304c763ba5b06d2952afd
7
- data.tar.gz: ec1b4ec965b7cfe5b97fd7519c7e8cea77d881f7f083e47c0e66ab17fe1aa5048d24a112f732cdac6ecd085ece372494661b898255d8583379ec790ba9c507cf
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/CHANGELOG.md CHANGED
@@ -24,6 +24,15 @@ 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
+
27
36
  ## [1.0.25] - 2025-08-31
28
37
  - TAG: [v1.0.25][1.0.25t]
29
38
  - COVERAGE: 97.81% -- 2630/2689 lines in 22 files
@@ -384,7 +393,9 @@ Please file a bug if you notice a violation of semantic versioning.
384
393
  - Selecting will run the selected workflow via `act`
385
394
  - This may move to its own gem in the future.
386
395
 
387
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.25...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
388
399
  [1.0.25]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.24...v1.0.25
389
400
  [1.0.25t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.25
390
401
  [1.0.24]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.23...v1.0.24
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.0.25 - 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.25"
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.25
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.25
355
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.0.25/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.25
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