kettle-dev 1.1.54 → 1.1.55

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: 057cb3f9acbf499a708e7a5d42e113df4c39b714033b487cdcd6ce6f462690da
4
- data.tar.gz: 4074632ea00e9c462cd3621da2823e9def6fa7f88d0732179e98d677189aa12c
3
+ metadata.gz: e4782eb3b39e080e427e189f57e3aed63e153847e42a1941ab5878bbd105c2fc
4
+ data.tar.gz: 4b2403df88b14c7bdab14a016eba9566412bf82df7e941d95802c6eb06148376
5
5
  SHA512:
6
- metadata.gz: 18e83e638940572c635af1dc650ba2073e2fa79da400305e56dbc603383d9e886a1d5b4fec518a34d730dc22d03cf54dff7875c7e0ebaebb97c074a33dee3837
7
- data.tar.gz: 301971c113792d0f660b63d6949da4c6b4715c07c676c8e1777cd198914df1eef35672e41f1bbf9a1062c11b9875693ee3b1aa3ef1599cfe987e9b6df6c6fc89
6
+ metadata.gz: 85ea8797ad85aa8fdc7e81c87c5690ea51de9d11f72c2bc3d3a27d98592677ef7b3d4586d25d57faa08d2e75d578dd474962ca3f7393f4ba84546f307e08c33c
7
+ data.tar.gz: 6d1480c222f28119e4207b8b98083148c6633f94fe160f501622eff7628e06ba813cd0aa4cb756a494ec3e1751259841b0e09dd482153fae12786f767de43185
checksums.yaml.gz.sig CHANGED
Binary file
@@ -13,7 +13,7 @@
13
13
  # - template: Security/SAST.gitlab-ci.yml
14
14
 
15
15
  default:
16
- image: ruby
16
+ image: "ruby:${RUBY_VERSION}"
17
17
 
18
18
  variables:
19
19
  BUNDLE_INSTALL_FLAGS: "--quiet --jobs=$(nproc) --retry=3"
@@ -22,8 +22,9 @@ variables:
22
22
  K_SOUP_COV_DEBUG: true
23
23
  K_SOUP_COV_DO: true
24
24
  K_SOUP_COV_HARD: true
25
- K_SOUP_COV_MIN_BRANCH: 100
26
- K_SOUP_COV_MIN_LINE: 100
25
+ # Lower than local, which is at 100/100, because rubocop-lts isn't installed in the coverage workflow
26
+ K_SOUP_COV_MIN_BRANCH: 74
27
+ K_SOUP_COV_MIN_LINE: 90
27
28
  K_SOUP_COV_VERBOSE: true
28
29
  K_SOUP_COV_FORMATTERS: "tty"
29
30
  K_SOUP_COV_MULTI_FORMATTERS: true
@@ -39,7 +40,6 @@ workflow:
39
40
  - if: '$CI_COMMIT_TAG'
40
41
 
41
42
  .test_template-current: &test_definition-current
42
- image: ruby:${RUBY_VERSION}
43
43
  stage: test
44
44
  script:
45
45
  # || true so we don't fail here, because it'll probably work even if the gem update fails
@@ -67,7 +67,6 @@ workflow:
67
67
  - vendor/ruby
68
68
 
69
69
  .test_template-legacy: &test_definition-legacy
70
- image: ruby:${RUBY_VERSION}
71
70
  stage: test
72
71
  script:
73
72
  # RUBYGEMS_VERSION because we support EOL Ruby still...
@@ -87,7 +86,7 @@ workflow:
87
86
  - bundle exec appraisal ${APPRAISAL} bin/rake --tasks
88
87
  # Run tests, skipping those that won't work in CI
89
88
  - >
90
- bundle exec appraisal unlocked_deps \
89
+ bundle exec appraisal ${APPRAISAL} \
91
90
  bin/rspec spec \
92
91
  --tag \~ci_skip \
93
92
  --format progress \
@@ -108,7 +107,7 @@ ruby-current:
108
107
  ruby-ruby3_1:
109
108
  variables:
110
109
  RUBYGEMS_VERSION: "3.6.9"
111
- APPRAISAL: ruby_3_1
110
+ APPRAISAL: ruby-3-1
112
111
  K_SOUP_COV_DO: false
113
112
  <<: *test_definition-legacy
114
113
  parallel:
@@ -118,7 +117,7 @@ ruby-ruby3_1:
118
117
  ruby-ruby3_0:
119
118
  variables:
120
119
  RUBYGEMS_VERSION: "3.5.23"
121
- APPRAISAL: ruby_3_0
120
+ APPRAISAL: ruby-3-0
122
121
  K_SOUP_COV_DO: false
123
122
  <<: *test_definition-legacy
124
123
  parallel:
@@ -128,7 +127,7 @@ ruby-ruby3_0:
128
127
  ruby-ruby2_7:
129
128
  variables:
130
129
  RUBYGEMS_VERSION: "3.4.22"
131
- APPRAISAL: ruby_2_7
130
+ APPRAISAL: ruby-2-7
132
131
  K_SOUP_COV_DO: false
133
132
  <<: *test_definition-legacy
134
133
  parallel:
data/CHANGELOG.md CHANGED
@@ -20,8 +20,6 @@ Please file a bug if you notice a violation of semantic versioning.
20
20
 
21
21
  ### Added
22
22
 
23
- - .idea/.gitignore is now part of template
24
-
25
23
  ### Changed
26
24
 
27
25
  ### Deprecated
@@ -32,6 +30,28 @@ Please file a bug if you notice a violation of semantic versioning.
32
30
 
33
31
  ### Security
34
32
 
33
+ ## [1.1.55] - 2025-11-11
34
+
35
+ - TAG: [v1.1.55][1.1.55t]
36
+ - COVERAGE: 94.41% -- 4039/4278 lines in 26 files
37
+ - BRANCH COVERAGE: 78.88% -- 1662/2107 branches in 26 files
38
+ - 79.89% documented
39
+
40
+ ### Added
41
+
42
+ - GitLab Pipelines for Ruby 2.7, 3.0, 3.0
43
+
44
+ ## [1.1.54] - 2025-11-11
45
+
46
+ - TAG: [v1.1.54][1.1.54t]
47
+ - COVERAGE: 94.39% -- 4038/4278 lines in 26 files
48
+ - BRANCH COVERAGE: 78.88% -- 1662/2107 branches in 26 files
49
+ - 79.89% documented
50
+
51
+ ### Added
52
+
53
+ - .idea/.gitignore is now part of template
54
+
35
55
  ## [1.1.53] - 2025-11-10
36
56
 
37
57
  - TAG: [v1.1.53][1.1.53t]
@@ -1360,7 +1380,11 @@ Please file a bug if you notice a violation of semantic versioning.
1360
1380
  - Selecting will run the selected workflow via `act`
1361
1381
  - This may move to its own gem in the future.
1362
1382
 
1363
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.53...HEAD
1383
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.55...HEAD
1384
+ [1.1.55]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.54...v1.1.55
1385
+ [1.1.55t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.55
1386
+ [1.1.54]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.53...v1.1.54
1387
+ [1.1.54t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.54
1364
1388
  [1.1.53]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.52...v1.1.53
1365
1389
  [1.1.53t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.53
1366
1390
  [1.1.52]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.51...v1.1.52
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.54 - 2025-11-10
3
+ # kettle-dev Rakefile v1.1.55 - 2025-11-11
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.1.54"
9
+ VERSION = "1.1.55"
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.54
4
+ version: 1.1.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -397,10 +397,10 @@ licenses:
397
397
  - MIT
398
398
  metadata:
399
399
  homepage_uri: https://kettle-dev.galtzo.com/
400
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.54
401
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.54/CHANGELOG.md
400
+ source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.55
401
+ changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.55/CHANGELOG.md
402
402
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
403
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.54
403
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.55
404
404
  funding_uri: https://github.com/sponsors/pboling
405
405
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
406
406
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file