kettle-dev 1.1.34 → 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 +39 -1
- data/README.md +22 -8
- data/README.md.example +22 -8
- data/README.md.no-osc.example +21 -7
- data/Rakefile.example +1 -1
- data/kettle-dev.gemspec.example +1 -14
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +7 -21
- 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,40 @@ 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
|
+
|
|
48
|
+
## [1.1.35] - 2025-10-20
|
|
49
|
+
|
|
50
|
+
- TAG: [v1.1.35][1.1.35t]
|
|
51
|
+
- COVERAGE: 96.04% -- 3949/4112 lines in 26 files
|
|
52
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
|
53
|
+
- 79.68% documented
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
|
|
57
|
+
- more documentation of the RC.O situation
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- upgraded kettle-test to v1.0.5
|
|
62
|
+
|
|
63
|
+
### Removed
|
|
64
|
+
|
|
65
|
+
- direct dependency on rspec-pending_for (now provided, and configured, by kettle-test)
|
|
66
|
+
|
|
33
67
|
## [1.1.34] - 2025-10-20
|
|
34
68
|
|
|
35
69
|
- TAG: [v1.1.34][1.1.34t]
|
|
@@ -1100,7 +1134,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1100
1134
|
- Selecting will run the selected workflow via `act`
|
|
1101
1135
|
- This may move to its own gem in the future.
|
|
1102
1136
|
|
|
1103
|
-
[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
|
|
1140
|
+
[1.1.35]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.34...v1.1.35
|
|
1141
|
+
[1.1.35t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.35
|
|
1104
1142
|
[1.1.34]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.33...v1.1.34
|
|
1105
1143
|
[1.1.34t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.34
|
|
1106
1144
|
[1.1.33]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.32...v1.1.33
|
data/README.md
CHANGED
|
@@ -1,16 +1,30 @@
|
|
|
1
|
-
| 📍 NOTE
|
|
2
|
-
|
|
3
|
-
| RubyGems
|
|
4
|
-
|
|
|
5
|
-
|
|
|
6
|
-
|
|
|
7
|
-
|
|
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/
|
|
8
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
|
9
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
|
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
|
|
10
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
|
11
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
|
12
23
|
[gem-coop]: https://gem.coop
|
|
24
|
+
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
|
13
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
|
26
|
+
[gem-scopes]: https://github.com/galtzo-floss/bundle-namespace
|
|
27
|
+
[gem-server]: https://github.com/galtzo-floss/gem-server
|
|
14
28
|
[reinteractive-podcast]: https://youtu.be/_H4qbtC5qzU?si=BvuBU90R2wAqD2E6
|
|
15
29
|
|
|
16
30
|
[![Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0][🖼️galtzo-i]][🖼️galtzo-discord] [![ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5][🖼️ruby-lang-i]][🖼️ruby-lang] [![kettle-dev Logo by Aboling0, CC BY-SA 4.0][🖼️kettle-dev-i]][🖼️kettle-dev]
|
|
@@ -940,7 +954,7 @@ Thanks for RTFM. ☺️
|
|
|
940
954
|
[📌gitmoji]:https://gitmoji.dev
|
|
941
955
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
942
956
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
943
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.
|
|
957
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.112-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
944
958
|
[🔐security]: SECURITY.md
|
|
945
959
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
946
960
|
[📄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
|
@@ -1,16 +1,30 @@
|
|
|
1
|
-
| 📍 NOTE
|
|
2
|
-
|
|
3
|
-
| RubyGems
|
|
4
|
-
|
|
|
5
|
-
|
|
|
6
|
-
|
|
|
7
|
-
|
|
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/
|
|
8
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
|
9
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
|
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
|
|
10
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
|
11
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
|
12
23
|
[gem-coop]: https://gem.coop
|
|
24
|
+
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
|
13
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
|
26
|
+
[gem-scopes]: https://github.com/galtzo-floss/bundle-namespace
|
|
27
|
+
[gem-server]: https://github.com/galtzo-floss/gem-server
|
|
14
28
|
[reinteractive-podcast]: https://youtu.be/_H4qbtC5qzU?si=BvuBU90R2wAqD2E6
|
|
15
29
|
|
|
16
30
|
[![Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0][🖼️galtzo-i]][🖼️galtzo-discord] [![ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5][🖼️ruby-lang-i]][🖼️ruby-lang] [![kettle-dev Logo by Aboling0, CC BY-SA 4.0][🖼️kettle-dev-i]][🖼️kettle-dev]
|
|
@@ -534,7 +548,7 @@ Thanks for RTFM. ☺️
|
|
|
534
548
|
[📌gitmoji]:https://gitmoji.dev
|
|
535
549
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
536
550
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
537
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.
|
|
551
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-4.112-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
538
552
|
[🔐security]: SECURITY.md
|
|
539
553
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
540
554
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/README.md.no-osc.example
CHANGED
|
@@ -1,16 +1,30 @@
|
|
|
1
|
-
| 📍 NOTE
|
|
2
|
-
|
|
3
|
-
| RubyGems
|
|
4
|
-
|
|
|
5
|
-
|
|
|
6
|
-
|
|
|
7
|
-
|
|
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/
|
|
8
15
|
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
|
9
16
|
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
|
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
|
|
10
20
|
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
|
11
21
|
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
|
22
|
+
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
|
12
23
|
[gem-coop]: https://gem.coop
|
|
24
|
+
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
|
13
25
|
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
|
26
|
+
[gem-scopes]: https://github.com/galtzo-floss/bundle-namespace
|
|
27
|
+
[gem-server]: https://github.com/galtzo-floss/gem-server
|
|
14
28
|
[reinteractive-podcast]: https://youtu.be/_H4qbtC5qzU?si=BvuBU90R2wAqD2E6
|
|
15
29
|
|
|
16
30
|
[![Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0][🖼️galtzo-i]][🖼️galtzo-discord] [![ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5][🖼️ruby-lang-i]][🖼️ruby-lang] [![kettle-dev Logo by Aboling0, CC BY-SA 4.0][🖼️kettle-dev-i]][🖼️kettle-dev]
|
data/Rakefile.example
CHANGED
data/kettle-dev.gemspec.example
CHANGED
|
@@ -128,8 +128,7 @@ Gem::Specification.new do |spec|
|
|
|
128
128
|
|
|
129
129
|
# Testing
|
|
130
130
|
spec.add_development_dependency("appraisal2", "~> 3.0") # ruby >= 1.8.7, for testing against multiple versions of dependencies
|
|
131
|
-
spec.add_development_dependency("kettle-test", "~> 1.0")
|
|
132
|
-
spec.add_development_dependency("rspec-pending_for", "~> 0.0", ">= 0.0.17") # ruby >= 2.3, used to skip specs on incompatible Rubies
|
|
131
|
+
spec.add_development_dependency("kettle-test", "~> 1.0", ">= 1.0.5") # ruby >= 2.3
|
|
133
132
|
|
|
134
133
|
# Releasing
|
|
135
134
|
spec.add_development_dependency("ruby-progressbar", "~> 1.13") # ruby >= 0
|
|
@@ -148,18 +147,6 @@ Gem::Specification.new do |spec|
|
|
|
148
147
|
spec.add_development_dependency("gitmoji-regex", "~> 1.0", ">= 1.0.3") # ruby >= 2.3.0
|
|
149
148
|
|
|
150
149
|
# HTTP recording for deterministic specs
|
|
151
|
-
# Ruby 2.3 / 2.4 can fail with:
|
|
152
|
-
# | An error occurred while loading spec_helper.
|
|
153
|
-
# | Failure/Error: require "vcr"
|
|
154
|
-
# |
|
|
155
|
-
# | NoMethodError:
|
|
156
|
-
# | undefined method `delete_prefix' for "CONTENT_LENGTH":String
|
|
157
|
-
# | # ./spec/config/vcr.rb:3:in `require'
|
|
158
|
-
# | # ./spec/config/vcr.rb:3:in `<top (required)>'
|
|
159
|
-
# | # ./spec/spec_helper.rb:8:in `require_relative'
|
|
160
|
-
# | # ./spec/spec_helper.rb:8:in `<top (required)>'
|
|
161
|
-
# So that's why we need backports.
|
|
162
|
-
# spec.add_development_dependency("backports", "~> 3.25", ">= 3.25.1") # ruby >= 0
|
|
163
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
|
|
164
151
|
# This is done in the "head" appraisal.
|
|
165
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
|
|
@@ -106,33 +106,19 @@ dependencies:
|
|
|
106
106
|
- - "~>"
|
|
107
107
|
- !ruby/object:Gem::Version
|
|
108
108
|
version: '1.0'
|
|
109
|
-
type: :development
|
|
110
|
-
prerelease: false
|
|
111
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
112
|
-
requirements:
|
|
113
|
-
- - "~>"
|
|
114
|
-
- !ruby/object:Gem::Version
|
|
115
|
-
version: '1.0'
|
|
116
|
-
- !ruby/object:Gem::Dependency
|
|
117
|
-
name: rspec-pending_for
|
|
118
|
-
requirement: !ruby/object:Gem::Requirement
|
|
119
|
-
requirements:
|
|
120
|
-
- - "~>"
|
|
121
|
-
- !ruby/object:Gem::Version
|
|
122
|
-
version: '0.0'
|
|
123
109
|
- - ">="
|
|
124
110
|
- !ruby/object:Gem::Version
|
|
125
|
-
version:
|
|
111
|
+
version: 1.0.5
|
|
126
112
|
type: :development
|
|
127
113
|
prerelease: false
|
|
128
114
|
version_requirements: !ruby/object:Gem::Requirement
|
|
129
115
|
requirements:
|
|
130
116
|
- - "~>"
|
|
131
117
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: '
|
|
118
|
+
version: '1.0'
|
|
133
119
|
- - ">="
|
|
134
120
|
- !ruby/object:Gem::Version
|
|
135
|
-
version:
|
|
121
|
+
version: 1.0.5
|
|
136
122
|
- !ruby/object:Gem::Dependency
|
|
137
123
|
name: ruby-progressbar
|
|
138
124
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -409,10 +395,10 @@ licenses:
|
|
|
409
395
|
- MIT
|
|
410
396
|
metadata:
|
|
411
397
|
homepage_uri: https://kettle-dev.galtzo.com/
|
|
412
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
|
413
|
-
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
|
|
414
400
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
415
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
|
401
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.36
|
|
416
402
|
funding_uri: https://github.com/sponsors/pboling
|
|
417
403
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
418
404
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|