kettle-dev 1.1.35 → 1.1.36
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.envrc +2 -2
- data/Appraisals +2 -2
- data/Appraisals.example +1 -1
- data/CHANGELOG.md +18 -1
- data/README.md +17 -9
- data/README.md.example +17 -9
- data/README.md.no-osc.example +17 -9
- data/Rakefile.example +1 -1
- data/kettle-dev.gemspec.example +1 -0
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b545b3e57dcdffa09b3195b7791e53fa5856a30a14ceef4038b3720a743c9f87
|
4
|
+
data.tar.gz: 2b123d25738a5c95b878a45a6aecf727f88c8f76f39c30de267007500480c31c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5aef7adb48e8d7ee2fe92cb767ed6cbc19afbbe7b39da1007d587914f51db177ab5a944c8818a2facf708368234a442099e873d057ad08941508f0fb210621cf
|
7
|
+
data.tar.gz: 615ca36572d9d41c37bc3f890f5269775ac34856bee5cb27f1b9fec0fcb66e9056da3a2e3072936d732ae8f97fa7fcfc9ec6195efd6afa77c9303886c7060690
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/.envrc
CHANGED
@@ -21,8 +21,8 @@ export K_SOUP_COV_DO=true # Means you want code coverage
|
|
21
21
|
export K_SOUP_COV_COMMAND_NAME="Test Coverage"
|
22
22
|
# Available formats are html, xml, rcov, lcov, json, tty
|
23
23
|
export K_SOUP_COV_FORMATTERS="html,xml,rcov,lcov,json,tty"
|
24
|
-
export K_SOUP_COV_MIN_BRANCH=
|
25
|
-
export K_SOUP_COV_MIN_LINE=
|
24
|
+
export K_SOUP_COV_MIN_BRANCH=79 # Means you want to enforce X% branch coverage
|
25
|
+
export K_SOUP_COV_MIN_LINE=95 # Means you want to enforce X% line coverage
|
26
26
|
export K_SOUP_COV_MIN_HARD=true # Means you want the build to fail if the coverage thresholds are not met
|
27
27
|
export K_SOUP_COV_MULTI_FORMATTERS=true
|
28
28
|
export K_SOUP_COV_OPEN_BIN= # Means don't try to open coverage results in browser
|
data/Appraisals
CHANGED
@@ -22,9 +22,9 @@
|
|
22
22
|
appraise "unlocked_deps" do
|
23
23
|
eval_gemfile "modular/coverage.gemfile"
|
24
24
|
eval_gemfile "modular/documentation.gemfile"
|
25
|
-
eval_gemfile "modular/style.gemfile"
|
26
25
|
eval_gemfile "modular/optional.gemfile"
|
27
26
|
eval_gemfile "modular/recording/r3/recording.gemfile"
|
27
|
+
eval_gemfile "modular/style.gemfile"
|
28
28
|
eval_gemfile "modular/x_std_libs.gemfile"
|
29
29
|
# Dependencies injected by the kettle-dev-setup script & kettle:dev:install rake task
|
30
30
|
# eval_gemfile "modular/injected.gemfile"
|
@@ -33,9 +33,9 @@ end
|
|
33
33
|
# Used for head (nightly) releases of ruby, truffleruby, and jruby.
|
34
34
|
# Split into discrete appraisals if one of them needs a dependency locked discretely.
|
35
35
|
appraise "head" do
|
36
|
+
gem "benchmark", "~> 0.4", ">= 0.4.1"
|
36
37
|
# Why is cgi gem here? See: https://github.com/vcr/vcr/issues/1057
|
37
38
|
gem "cgi", ">= 0.5"
|
38
|
-
gem "benchmark", "~> 0.4", ">= 0.4.1"
|
39
39
|
eval_gemfile "modular/recording/r3/recording.gemfile"
|
40
40
|
eval_gemfile "modular/x_std_libs.gemfile"
|
41
41
|
# Dependencies injected by the kettle-dev-setup script & kettle:dev:install rake task
|
data/Appraisals.example
CHANGED
@@ -22,8 +22,8 @@
|
|
22
22
|
appraise "unlocked_deps" do
|
23
23
|
eval_gemfile "modular/coverage.gemfile"
|
24
24
|
eval_gemfile "modular/documentation.gemfile"
|
25
|
-
eval_gemfile "modular/style.gemfile"
|
26
25
|
eval_gemfile "modular/optional.gemfile"
|
26
|
+
eval_gemfile "modular/style.gemfile"
|
27
27
|
eval_gemfile "modular/x_std_libs.gemfile"
|
28
28
|
end
|
29
29
|
|
data/CHANGELOG.md
CHANGED
@@ -30,6 +30,21 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
30
30
|
|
31
31
|
### Security
|
32
32
|
|
33
|
+
## [1.1.36] - 2025-10-20
|
34
|
+
|
35
|
+
- TAG: [v1.1.36][1.1.36t]
|
36
|
+
- COVERAGE: 96.04% -- 3949/4112 lines in 26 files
|
37
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
38
|
+
- 79.68% documented
|
39
|
+
|
40
|
+
### Added
|
41
|
+
|
42
|
+
- More documentation of RC situation
|
43
|
+
|
44
|
+
### Fixed
|
45
|
+
|
46
|
+
- alphabetize dependencies
|
47
|
+
|
33
48
|
## [1.1.35] - 2025-10-20
|
34
49
|
|
35
50
|
- TAG: [v1.1.35][1.1.35t]
|
@@ -1119,7 +1134,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
1119
1134
|
- Selecting will run the selected workflow via `act`
|
1120
1135
|
- This may move to its own gem in the future.
|
1121
1136
|
|
1122
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
1137
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.36...HEAD
|
1138
|
+
[1.1.36]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.35...v1.1.36
|
1139
|
+
[1.1.36t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.36
|
1123
1140
|
[1.1.35]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.34...v1.1.35
|
1124
1141
|
[1.1.35t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.35
|
1125
1142
|
[1.1.34]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.33...v1.1.34
|
data/README.md
CHANGED
@@ -1,17 +1,25 @@
|
|
1
|
-
| 📍 NOTE
|
2
|
-
|
3
|
-
| RubyGems
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
1
|
+
| 📍 NOTE |
|
2
|
+
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
3
|
+
| RubyGems (the [GitHub org][rubygems-org], not the website) [suffered][draper-security] a [hostile takeover][ellen-takeover] in September 2025. |
|
4
|
+
| Ultimately [4 maintainers][simi-removed] were [hard removed][martin-removed] and a reason has been given for only 1 of those, while 2 others resigned in protest. |
|
5
|
+
| It is a [complicated story][draper-takeover] which is difficult to [parse quickly][draper-lies]. |
|
6
|
+
| I'm adding notes like this to gems because I [don't condone theft][draper-theft] of repositories or gems from their rightful owners. |
|
7
|
+
| If a similar theft happened with my repos/gems, I'd hope some would stand up for me. |
|
8
|
+
| Disenfranchised former-maintainers have started [gem.coop][gem-coop]. |
|
9
|
+
| Once available I will publish there exclusively; unless RubyCentral makes amends with the community. |
|
10
|
+
| The ["Technology for Humans: Joel Draper"][reinteractive-podcast] podcast episode by [reinteractive][reinteractive] is the most cogent summary I'm aware of. |
|
11
|
+
| See [here][gem-naming], [here][gem-coop] and [here][martin-ann] for more info on what comes next. |
|
12
|
+
| What I'm doing: A (WIP) proposal for [bundler/gem scopes][gem-scopes], and a (WIP) proposal for a federated [gem server][gem-server]. |
|
13
|
+
|
14
|
+
[rubygems-org]: https://github.com/rubygems/
|
10
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
11
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
12
17
|
[ellen-takeover]: https://pup-e.com/blog/goodbye-rubygems/
|
18
|
+
[simi-removed]: https://www.reddit.com/r/ruby/s/gOk42POCaV
|
19
|
+
[martin-removed]: https://bsky.app/profile/martinemde.com/post/3m3occezxxs2q
|
13
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
14
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
15
23
|
[gem-coop]: https://gem.coop
|
16
24
|
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
17
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
data/README.md.example
CHANGED
@@ -1,17 +1,25 @@
|
|
1
|
-
| 📍 NOTE
|
2
|
-
|
3
|
-
| RubyGems
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
1
|
+
| 📍 NOTE |
|
2
|
+
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
3
|
+
| RubyGems (the [GitHub org][rubygems-org], not the website) [suffered][draper-security] a [hostile takeover][ellen-takeover] in September 2025. |
|
4
|
+
| Ultimately [4 maintainers][simi-removed] were [hard removed][martin-removed] and a reason has been given for only 1 of those, while 2 others resigned in protest. |
|
5
|
+
| It is a [complicated story][draper-takeover] which is difficult to [parse quickly][draper-lies]. |
|
6
|
+
| I'm adding notes like this to gems because I [don't condone theft][draper-theft] of repositories or gems from their rightful owners. |
|
7
|
+
| If a similar theft happened with my repos/gems, I'd hope some would stand up for me. |
|
8
|
+
| Disenfranchised former-maintainers have started [gem.coop][gem-coop]. |
|
9
|
+
| Once available I will publish there exclusively; unless RubyCentral makes amends with the community. |
|
10
|
+
| The ["Technology for Humans: Joel Draper"][reinteractive-podcast] podcast episode by [reinteractive][reinteractive] is the most cogent summary I'm aware of. |
|
11
|
+
| See [here][gem-naming], [here][gem-coop] and [here][martin-ann] for more info on what comes next. |
|
12
|
+
| What I'm doing: A (WIP) proposal for [bundler/gem scopes][gem-scopes], and a (WIP) proposal for a federated [gem server][gem-server]. |
|
13
|
+
|
14
|
+
[rubygems-org]: https://github.com/rubygems/
|
10
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
11
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
12
17
|
[ellen-takeover]: https://pup-e.com/blog/goodbye-rubygems/
|
18
|
+
[simi-removed]: https://www.reddit.com/r/ruby/s/gOk42POCaV
|
19
|
+
[martin-removed]: https://bsky.app/profile/martinemde.com/post/3m3occezxxs2q
|
13
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
14
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
15
23
|
[gem-coop]: https://gem.coop
|
16
24
|
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
17
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
data/README.md.no-osc.example
CHANGED
@@ -1,17 +1,25 @@
|
|
1
|
-
| 📍 NOTE
|
2
|
-
|
3
|
-
| RubyGems
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
1
|
+
| 📍 NOTE |
|
2
|
+
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
3
|
+
| RubyGems (the [GitHub org][rubygems-org], not the website) [suffered][draper-security] a [hostile takeover][ellen-takeover] in September 2025. |
|
4
|
+
| Ultimately [4 maintainers][simi-removed] were [hard removed][martin-removed] and a reason has been given for only 1 of those, while 2 others resigned in protest. |
|
5
|
+
| It is a [complicated story][draper-takeover] which is difficult to [parse quickly][draper-lies]. |
|
6
|
+
| I'm adding notes like this to gems because I [don't condone theft][draper-theft] of repositories or gems from their rightful owners. |
|
7
|
+
| If a similar theft happened with my repos/gems, I'd hope some would stand up for me. |
|
8
|
+
| Disenfranchised former-maintainers have started [gem.coop][gem-coop]. |
|
9
|
+
| Once available I will publish there exclusively; unless RubyCentral makes amends with the community. |
|
10
|
+
| The ["Technology for Humans: Joel Draper"][reinteractive-podcast] podcast episode by [reinteractive][reinteractive] is the most cogent summary I'm aware of. |
|
11
|
+
| See [here][gem-naming], [here][gem-coop] and [here][martin-ann] for more info on what comes next. |
|
12
|
+
| What I'm doing: A (WIP) proposal for [bundler/gem scopes][gem-scopes], and a (WIP) proposal for a federated [gem server][gem-server]. |
|
13
|
+
|
14
|
+
[rubygems-org]: https://github.com/rubygems/
|
10
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
11
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
12
17
|
[ellen-takeover]: https://pup-e.com/blog/goodbye-rubygems/
|
18
|
+
[simi-removed]: https://www.reddit.com/r/ruby/s/gOk42POCaV
|
19
|
+
[martin-removed]: https://bsky.app/profile/martinemde.com/post/3m3occezxxs2q
|
13
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
14
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
15
23
|
[gem-coop]: https://gem.coop
|
16
24
|
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
17
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
data/Rakefile.example
CHANGED
data/kettle-dev.gemspec.example
CHANGED
@@ -146,6 +146,7 @@ Gem::Specification.new do |spec|
|
|
146
146
|
# spec.add_development_dependency("erb", ">= 2.2") # ruby >= 2.3.0, not SemVer, old rubies get dropped in a patch.
|
147
147
|
spec.add_development_dependency("gitmoji-regex", "~> 1.0", ">= 1.0.3") # ruby >= 2.3.0
|
148
148
|
|
149
|
+
# HTTP recording for deterministic specs
|
149
150
|
# In Ruby 3.5 (HEAD) the CGI library has been pared down, so we also need to depend on gem "cgi" for ruby@head
|
150
151
|
# This is done in the "head" appraisal.
|
151
152
|
# See: https://github.com/vcr/vcr/issues/1057
|
data/lib/kettle/dev/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter H. Boling
|
@@ -395,10 +395,10 @@ licenses:
|
|
395
395
|
- MIT
|
396
396
|
metadata:
|
397
397
|
homepage_uri: https://kettle-dev.galtzo.com/
|
398
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
399
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.
|
398
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.36
|
399
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.36/CHANGELOG.md
|
400
400
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
401
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
401
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.36
|
402
402
|
funding_uri: https://github.com/sponsors/pboling
|
403
403
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
404
404
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
Binary file
|