kettle-dev 2.0.7 → 2.1.0
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/CHANGELOG.md +62 -26
- data/LICENSE.md +1 -1
- data/README.md +1 -1
- data/SECURITY.md +1 -1
- data/lib/kettle/dev/rakelib/appraisal.rake +107 -45
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +30 -10
- 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: d0939e7fbe918113808390ac5a59aa00eb55ef29f3cc5333e97891f934413027
|
|
4
|
+
data.tar.gz: ef89c8c3ba19f7da27e08c882f1484d78b40e820371c70cc14d343ca7aa74f17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2458f3f267ecf17c4a6badd5ff6e52a2ab5c7480dab066634eb192ded14b551b72681dd7ec3e009d51f2ab51f405e3387c539ad65290e8043a7493ec2852b869
|
|
7
|
+
data.tar.gz: 75c6af98860bf08b8c807db3bc12dab3aa7a86cb557100b67d195a9630f8d141ca0a50d3e2fec51f715248ded501a46c2dd2fe18b039a840da95134abe97061b
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -28,11 +28,38 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
28
28
|
|
|
29
29
|
### Fixed
|
|
30
30
|
|
|
31
|
-
- Avoided moving mocked CI task input reads into a background thread for
|
|
32
|
-
non-interactive runs, fixing TruffleRuby v23.0-v23.1 CI stability.
|
|
33
|
-
|
|
34
31
|
### Security
|
|
35
32
|
|
|
33
|
+
## [2.1.0] - 2026-06-06
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.1.0][2.1.0t]
|
|
36
|
+
- COVERAGE: 93.52% -- 2973/3179 lines in 25 files
|
|
37
|
+
- BRANCH COVERAGE: 77.58% -- 1204/1552 branches in 25 files
|
|
38
|
+
- 75.93% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- `appraisal:install` now uses `appraisal generate-install`, and
|
|
43
|
+
`appraisal:update` now uses `appraisal generate-update`, preserving
|
|
44
|
+
generation-before-resolution behavior after Appraisal2 split pure install and
|
|
45
|
+
update commands from generation.
|
|
46
|
+
- Appraisal gemfile cleanup is no longer run directly by kettle-dev appraisal
|
|
47
|
+
tasks; projects that need generated gemfile normalization should load an
|
|
48
|
+
Appraisal2 plugin hook such as `appraisal2-rubocop`.
|
|
49
|
+
|
|
50
|
+
## [2.0.8] - 2026-06-02
|
|
51
|
+
|
|
52
|
+
- TAG: [v2.0.8][2.0.8t]
|
|
53
|
+
- COVERAGE: 92.83% -- 2953/3181 lines in 25 files
|
|
54
|
+
- BRANCH COVERAGE: 76.59% -- 1201/1568 branches in 25 files
|
|
55
|
+
- 75.93% documented
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- `appraisal:update` now installs the `Appraisal.root.gemfile` bundle before
|
|
60
|
+
running `bundle update --bundler`, fixing first-run release failures when the
|
|
61
|
+
Appraisal root lockfile does not exist yet.
|
|
62
|
+
|
|
36
63
|
## [2.0.7] - 2026-06-01
|
|
37
64
|
|
|
38
65
|
- TAG: [v2.0.7][2.0.7t]
|
|
@@ -46,6 +73,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
46
73
|
- Generated style Gemfiles now use the current RuboCop-LTS Ruby 2.4 floor.
|
|
47
74
|
- Lint / style updates
|
|
48
75
|
|
|
76
|
+
### Fixed
|
|
77
|
+
|
|
78
|
+
- Avoided moving mocked CI task input reads into a background thread for
|
|
79
|
+
non-interactive runs, fixing TruffleRuby v23.0-v23.1 CI stability.
|
|
80
|
+
|
|
49
81
|
## [2.0.6] - 2026-05-31
|
|
50
82
|
|
|
51
83
|
- TAG: [v2.0.6][2.0.6t]
|
|
@@ -545,7 +577,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
545
577
|
|
|
546
578
|
- Template .yardopts now includes yard-yaml plugin (for CITATION.cff)
|
|
547
579
|
- Template now includes a default `.yardopts` file
|
|
548
|
-
- Excludes
|
|
580
|
+
- Excludes _.gem, pkg/_.gem and .yardoc from documentation generation
|
|
549
581
|
|
|
550
582
|
## [1.1.52] - 2025-11-08
|
|
551
583
|
|
|
@@ -1044,7 +1076,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1044
1076
|
- improved documentation
|
|
1045
1077
|
- better organized readme
|
|
1046
1078
|
- badges are more clear & new badge for Ruby Friends Squad on Daily.dev
|
|
1047
|
-
|
|
1079
|
+
- https://app.daily.dev/squads/rubyfriends
|
|
1048
1080
|
|
|
1049
1081
|
### Changed
|
|
1050
1082
|
|
|
@@ -1530,7 +1562,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1530
1562
|
|
|
1531
1563
|
### Fixed
|
|
1532
1564
|
|
|
1533
|
-
- kettle:dev:install remove "Works with MRI Ruby
|
|
1565
|
+
- kettle:dev:install remove "Works with MRI Ruby\*" lines with no badges left
|
|
1534
1566
|
- kettle:dev:install prefix badge cell replacement with a single space
|
|
1535
1567
|
|
|
1536
1568
|
## [1.0.17] - 2025-08-29
|
|
@@ -1577,7 +1609,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1577
1609
|
|
|
1578
1610
|
### Fixed
|
|
1579
1611
|
|
|
1580
|
-
- include gemfiles/modular
|
|
1612
|
+
- include gemfiles/modular/\*gemfile.example with packaged gem
|
|
1581
1613
|
- CI workflow result polling logic revised:
|
|
1582
1614
|
- includes a delay
|
|
1583
1615
|
- scopes queries to specific commit SHA
|
|
@@ -1654,13 +1686,13 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1654
1686
|
### Added
|
|
1655
1687
|
|
|
1656
1688
|
- Add more .example templates
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1689
|
+
- .github/workflows/coverage.yml.example
|
|
1690
|
+
- .gitlab-ci.yml.example
|
|
1691
|
+
- Appraisals.example
|
|
1660
1692
|
- Kettle::Dev::InputAdapter: Input indirection layer for safe interactive prompts in tests; provides gets and readline; documented with YARD and typed with RBS.
|
|
1661
1693
|
- install task README improvements
|
|
1662
|
-
|
|
1663
|
-
|
|
1694
|
+
- extracts emoji grapheme from H1 to apply to gemspec's summary and description
|
|
1695
|
+
- removes badges for unsupported rubies, and major version MRI row if all badges removed
|
|
1664
1696
|
- new exe script: kettle-changelog - transitions a changelog from unreleased to next release
|
|
1665
1697
|
|
|
1666
1698
|
### Changed
|
|
@@ -1672,17 +1704,17 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1672
1704
|
### Removed
|
|
1673
1705
|
|
|
1674
1706
|
- dependency on git gem
|
|
1675
|
-
|
|
1676
|
-
|
|
1707
|
+
- git gem is still supported if present and not bypassed by new ENV variable `KETTLE_DEV_DISABLE_GIT_GEM`
|
|
1708
|
+
- no longer a direct dependency
|
|
1677
1709
|
|
|
1678
1710
|
### Fixed
|
|
1679
1711
|
|
|
1680
1712
|
- Upgrade stone_checksums for release compatibility with bundler v2.7+
|
|
1681
|
-
|
|
1713
|
+
- Retains compatibility with older bundler < v2.7
|
|
1682
1714
|
- Ship all example templates with gem
|
|
1683
1715
|
- install task README preservation
|
|
1684
|
-
|
|
1685
|
-
|
|
1716
|
+
- preserves H1 line, and specific H2 headed sections
|
|
1717
|
+
- preserve table alignment
|
|
1686
1718
|
|
|
1687
1719
|
## [1.0.10] - 2025-08-24
|
|
1688
1720
|
|
|
@@ -1705,7 +1737,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1705
1737
|
|
|
1706
1738
|
### Removed
|
|
1707
1739
|
|
|
1708
|
-
- attempts to make exe
|
|
1740
|
+
- attempts to make exe/\* scripts work without bundler. Bundler is required.
|
|
1709
1741
|
|
|
1710
1742
|
### Fixed
|
|
1711
1743
|
|
|
@@ -1716,14 +1748,14 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1716
1748
|
|
|
1717
1749
|
- TAG: [v1.0.9][1.0.9t]
|
|
1718
1750
|
- COVERAGE: 100.00% -- 130/130 lines in 7 files
|
|
1719
|
-
- BRANCH COVERAGE:
|
|
1751
|
+
- BRANCH COVERAGE: 96.00% -- 48/50 branches in 7 files
|
|
1720
1752
|
- 95.35% documented
|
|
1721
1753
|
|
|
1722
1754
|
### Added
|
|
1723
1755
|
|
|
1724
1756
|
- kettle-release: Add a sanity check for the latest released version of the gem being released, and display it during the confirmation with user that CHANGELOG.md and version.rb have been updated, so they can compare the value in version.rb with the value of the latest released version.
|
|
1725
|
-
|
|
1726
|
-
|
|
1757
|
+
- If the value in version.rb is less than the latest released version's major or minor, then check for the latest released version that matches the major + minor of what is in version.rb.
|
|
1758
|
+
- This way a stable branch intended to release patch updates to older versions is able to work use the script.
|
|
1727
1759
|
- kettle-release: optional pre-push local CI run using `act`, controlled by env var `K_RELEASE_LOCAL_CI` ("true" to run, "ask" to prompt) and `K_RELEASE_LOCAL_CI_WORKFLOW` to choose a workflow; defaults to `locked_deps.yml` when present; on failure, soft-resets the release prep commit and aborts.
|
|
1728
1760
|
- template task: now copies `certs/pboling.pem` into the host project when available.
|
|
1729
1761
|
|
|
@@ -1747,7 +1779,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1747
1779
|
|
|
1748
1780
|
### Fixed
|
|
1749
1781
|
|
|
1750
|
-
- Reproducible builds, with consistent checksums, by
|
|
1782
|
+
- Reproducible builds, with consistent checksums, by _not_ using SOURCE_DATE_EPOCH.
|
|
1751
1783
|
- Since bundler v2.7.0 builds are reproducible by default.
|
|
1752
1784
|
|
|
1753
1785
|
## [1.0.6] - 2025-08-24
|
|
@@ -1829,9 +1861,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1829
1861
|
|
|
1830
1862
|
- These were documented but not yet released:
|
|
1831
1863
|
- `kettle-release` ruby script for safely, securely, releasing a gem.
|
|
1832
|
-
|
|
1864
|
+
- This may move to its own gem in the future.
|
|
1833
1865
|
- `kettle-readme-backers` ruby script for integrating Open Source Collective backers into a README.md file.
|
|
1834
|
-
|
|
1866
|
+
- This may move to its own gem in the future.
|
|
1835
1867
|
|
|
1836
1868
|
## [1.0.0] - 2025-08-24
|
|
1837
1869
|
|
|
@@ -1849,7 +1881,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1849
1881
|
- appraisal2
|
|
1850
1882
|
- gitmoji-regex (& git-hooks to enforce gitmoji commit-style)
|
|
1851
1883
|
- via kettle-test
|
|
1852
|
-
- Note: rake tasks for kettle-test are added in
|
|
1884
|
+
- Note: rake tasks for kettle-test are added in _this gem_ (kettle-dev) because test rake tasks are a development concern
|
|
1853
1885
|
- rspec
|
|
1854
1886
|
- although rspec is the focus, most tools work with minitest as well
|
|
1855
1887
|
- rspec-block_is_expected
|
|
@@ -1862,7 +1894,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1862
1894
|
- Selecting will run the selected workflow via `act`
|
|
1863
1895
|
- This may move to its own gem in the future.
|
|
1864
1896
|
|
|
1865
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v2.0
|
|
1897
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v2.1.0...HEAD
|
|
1898
|
+
[2.1.0]: https://github.com/kettle-rb/kettle-dev/compare/v2.0.8...v2.1.0
|
|
1899
|
+
[2.1.0t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v2.1.0
|
|
1900
|
+
[2.0.8]: https://github.com/kettle-rb/kettle-dev/compare/v2.0.7...v2.0.8
|
|
1901
|
+
[2.0.8t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v2.0.8
|
|
1866
1902
|
[2.0.7]: https://github.com/kettle-rb/kettle-dev/compare/v2.0.6...v2.0.7
|
|
1867
1903
|
[2.0.7t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v2.0.7
|
|
1868
1904
|
[2.0.6]: https://github.com/kettle-rb/kettle-dev/compare/v2.0.5...v2.0.6
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
|
@@ -839,7 +839,7 @@ Thanks for RTFM. ☺️
|
|
|
839
839
|
| Package | kettle-dev |
|
|
840
840
|
| Description | 🍲 Kettle::Dev is a meta tool from kettle-rb to streamline development and testing. Acts as a shim dependency, pulling in many other dependencies, to give you OOTB productivity with a RubyGem, or Ruby app project. Configures a complete set of Rake tasks, for all the libraries is brings in, so they arrive ready to go. Fund overlooked open source projects - bottom of stack, dev/test dependencies: floss-funding.dev |
|
|
841
841
|
| Homepage | https://github.com/kettle-rb/kettle-dev |
|
|
842
|
-
| Source | https://github.com/kettle-rb/kettle-dev/tree/v2.0
|
|
842
|
+
| Source | https://github.com/kettle-rb/kettle-dev/tree/v2.1.0 |
|
|
843
843
|
| License | `AGPL-3.0-only` |
|
|
844
844
|
| Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/kettle-rb, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/kettle-dev, https://www.buymeacoffee.com/pboling |
|
|
845
845
|
<!-- kettle-jem:metadata:end -->
|
data/SECURITY.md
CHANGED
|
@@ -4,24 +4,76 @@
|
|
|
4
4
|
begin
|
|
5
5
|
require "appraisal/task"
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bundle = "bundle"
|
|
7
|
+
bundle = "bundle"
|
|
8
|
+
appraisal_env = {"BUNDLE_GEMFILE" => "Appraisal.root.gemfile"}
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
run_command = lambda do |failure_message, *args|
|
|
11
|
+
ok = system(*args)
|
|
12
|
+
raise(failure_message) unless ok
|
|
13
|
+
end
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
run_generate_steps = lambda do
|
|
16
|
+
# 1) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
|
|
17
|
+
run_command.call(
|
|
18
|
+
"appraisal:generate failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install",
|
|
19
|
+
appraisal_env,
|
|
20
|
+
bundle,
|
|
21
|
+
"install"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
# 2) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate
|
|
25
|
+
run_command.call(
|
|
26
|
+
"appraisal:generate failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate",
|
|
27
|
+
appraisal_env,
|
|
28
|
+
bundle,
|
|
29
|
+
"exec",
|
|
30
|
+
"appraisal",
|
|
31
|
+
"generate"
|
|
32
|
+
)
|
|
33
|
+
end
|
|
17
34
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
35
|
+
run_appraisal_task = lambda do |task_name, primary_steps = nil|
|
|
36
|
+
begin
|
|
37
|
+
if primary_steps
|
|
38
|
+
begin
|
|
39
|
+
primary_steps.call
|
|
40
|
+
rescue RuntimeError => e
|
|
41
|
+
warn("[kettle-dev][#{task_name}] #{e.message}; falling back to appraisal:generate")
|
|
42
|
+
run_generate_steps.call
|
|
43
|
+
end
|
|
44
|
+
else
|
|
45
|
+
run_generate_steps.call
|
|
46
|
+
end
|
|
47
|
+
rescue RuntimeError => e
|
|
48
|
+
abort(e.message)
|
|
49
|
+
end
|
|
50
|
+
end
|
|
21
51
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
52
|
+
desc("Install Appraisal gemfiles (initial setup for projects that didn't previously use Appraisal)")
|
|
53
|
+
task("appraisal:install") do
|
|
54
|
+
run_in_unbundled = proc do
|
|
55
|
+
run_appraisal_task.call(
|
|
56
|
+
"appraisal:install",
|
|
57
|
+
lambda do
|
|
58
|
+
# 1) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
|
|
59
|
+
run_command.call(
|
|
60
|
+
"appraisal:install failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install",
|
|
61
|
+
appraisal_env,
|
|
62
|
+
bundle,
|
|
63
|
+
"install"
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
# 2) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate-install
|
|
67
|
+
run_command.call(
|
|
68
|
+
"appraisal:install failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate-install",
|
|
69
|
+
appraisal_env,
|
|
70
|
+
bundle,
|
|
71
|
+
"exec",
|
|
72
|
+
"appraisal",
|
|
73
|
+
"generate-install"
|
|
74
|
+
)
|
|
75
|
+
end
|
|
76
|
+
)
|
|
25
77
|
end
|
|
26
78
|
|
|
27
79
|
if defined?(Bundler)
|
|
@@ -33,18 +85,8 @@ begin
|
|
|
33
85
|
|
|
34
86
|
desc("Generate Appraisal gemfiles without resolving appraisal locks")
|
|
35
87
|
task("appraisal:generate") do
|
|
36
|
-
bundle = "bundle"
|
|
37
|
-
|
|
38
88
|
run_in_unbundled = proc do
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# 1) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
|
|
42
|
-
ok = system(env, bundle, "install")
|
|
43
|
-
abort("appraisal:generate failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install") unless ok
|
|
44
|
-
|
|
45
|
-
# 2) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate
|
|
46
|
-
ok = system(env, bundle, "exec", "appraisal", "generate")
|
|
47
|
-
abort("appraisal:generate failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate") unless ok
|
|
89
|
+
run_appraisal_task.call("appraisal:generate")
|
|
48
90
|
end
|
|
49
91
|
|
|
50
92
|
if defined?(Bundler)
|
|
@@ -54,28 +96,48 @@ begin
|
|
|
54
96
|
end
|
|
55
97
|
end
|
|
56
98
|
|
|
57
|
-
desc("
|
|
99
|
+
desc("Generate and update Appraisal gemfiles")
|
|
58
100
|
task("appraisal:update") do
|
|
59
|
-
bundle = "bundle"
|
|
60
|
-
|
|
61
101
|
run_in_unbundled = proc do
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
102
|
+
run_appraisal_task.call(
|
|
103
|
+
"appraisal:update",
|
|
104
|
+
lambda do
|
|
105
|
+
# 1) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
|
|
106
|
+
run_command.call(
|
|
107
|
+
"appraisal:update failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install",
|
|
108
|
+
appraisal_env,
|
|
109
|
+
bundle,
|
|
110
|
+
"install"
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
# 2) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle update --bundler
|
|
114
|
+
run_command.call(
|
|
115
|
+
"appraisal:update failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle update --bundler",
|
|
116
|
+
appraisal_env,
|
|
117
|
+
bundle,
|
|
118
|
+
"update",
|
|
119
|
+
"--bundler"
|
|
120
|
+
)
|
|
121
|
+
|
|
122
|
+
# 3) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
|
|
123
|
+
run_command.call(
|
|
124
|
+
"appraisal:update failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install",
|
|
125
|
+
appraisal_env,
|
|
126
|
+
bundle,
|
|
127
|
+
"install"
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
# 4) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate-update
|
|
131
|
+
run_command.call(
|
|
132
|
+
"appraisal:update failed: BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal generate-update",
|
|
133
|
+
appraisal_env,
|
|
134
|
+
bundle,
|
|
135
|
+
"exec",
|
|
136
|
+
"appraisal",
|
|
137
|
+
"generate-update"
|
|
138
|
+
)
|
|
139
|
+
end
|
|
140
|
+
)
|
|
79
141
|
end
|
|
80
142
|
|
|
81
143
|
if defined?(Bundler)
|
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: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
version: '1.1'
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 1.1.
|
|
69
|
+
version: 1.1.10
|
|
70
70
|
type: :runtime
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -76,7 +76,7 @@ dependencies:
|
|
|
76
76
|
version: '1.1'
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: 1.1.
|
|
79
|
+
version: 1.1.10
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
81
|
name: bundler-audit
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -131,20 +131,40 @@ dependencies:
|
|
|
131
131
|
requirements:
|
|
132
132
|
- - "~>"
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
|
-
version: '3.
|
|
134
|
+
version: '3.1'
|
|
135
135
|
- - ">="
|
|
136
136
|
- !ruby/object:Gem::Version
|
|
137
|
-
version: 3.0
|
|
137
|
+
version: 3.1.0
|
|
138
138
|
type: :development
|
|
139
139
|
prerelease: false
|
|
140
140
|
version_requirements: !ruby/object:Gem::Requirement
|
|
141
141
|
requirements:
|
|
142
142
|
- - "~>"
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: '3.
|
|
144
|
+
version: '3.1'
|
|
145
145
|
- - ">="
|
|
146
146
|
- !ruby/object:Gem::Version
|
|
147
|
-
version: 3.0
|
|
147
|
+
version: 3.1.0
|
|
148
|
+
- !ruby/object:Gem::Dependency
|
|
149
|
+
name: turbo_tests2
|
|
150
|
+
requirement: !ruby/object:Gem::Requirement
|
|
151
|
+
requirements:
|
|
152
|
+
- - "~>"
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '3.1'
|
|
155
|
+
- - ">="
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: 3.1.1
|
|
158
|
+
type: :development
|
|
159
|
+
prerelease: false
|
|
160
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
161
|
+
requirements:
|
|
162
|
+
- - "~>"
|
|
163
|
+
- !ruby/object:Gem::Version
|
|
164
|
+
version: '3.1'
|
|
165
|
+
- - ">="
|
|
166
|
+
- !ruby/object:Gem::Version
|
|
167
|
+
version: 3.1.1
|
|
148
168
|
- !ruby/object:Gem::Dependency
|
|
149
169
|
name: ruby-progressbar
|
|
150
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -312,10 +332,10 @@ licenses:
|
|
|
312
332
|
- AGPL-3.0-only
|
|
313
333
|
metadata:
|
|
314
334
|
homepage_uri: https://kettle-dev.galtzo.com
|
|
315
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v2.0
|
|
316
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v2.0
|
|
335
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v2.1.0
|
|
336
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v2.1.0/CHANGELOG.md
|
|
317
337
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
318
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.0
|
|
338
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/2.1.0
|
|
319
339
|
funding_uri: https://github.com/sponsors/pboling
|
|
320
340
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
321
341
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|