kettle-dev 1.1.5 → 1.1.7
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/.git-hooks/commit-msg +2 -1
- data/.github/workflows/current.yml +5 -0
- data/.github/workflows/heads.yml +7 -2
- data/.github/workflows/heads.yml.example +7 -2
- data/.github/workflows/jruby.yml +5 -0
- data/.github/workflows/jruby.yml.example +5 -0
- data/CHANGELOG.md +31 -1
- data/README.md +1 -1
- data/README.md.example +1 -1
- data/Rakefile.example +1 -1
- data/gemfiles/modular/optional.gemfile +4 -1
- data/lib/kettle/dev/rakelib/appraisal.rake +27 -0
- data/lib/kettle/dev/rakelib/spec_test.rake +5 -14
- data/lib/kettle/dev/tasks/ci_task.rb +1 -5
- data/lib/kettle/dev/tasks/install_task.rb +4 -6
- data/lib/kettle/dev/tasks/template_task.rb +1 -5
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -25
- 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: 15028cfcd43a77f5fa3e4531711ff94628e0df63fa47882345f00810b9e07431
|
4
|
+
data.tar.gz: c7e558c0aab2f3b062f8a78b903f346579c7619888d6745424b52c766f1126b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f482575bb3ee784b08fb4ece99119af1aa371e061dae4c600cb5a9cd0bd708cfccbf26570394b07c6a5d3fd5db3c4ac81f33343ba34536a102c87cce6aa084c9
|
7
|
+
data.tar.gz: e93880beca5de68e14692277d64840e0b249708042fd9da1fb79285a53f04af3b47d106b2039615084e8c62ed5c00d02fb38cb58646adda9177dff2863674f58
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/.git-hooks/commit-msg
CHANGED
@@ -43,5 +43,6 @@ EOM
|
|
43
43
|
exit 1
|
44
44
|
end
|
45
45
|
rescue LoadError => e
|
46
|
-
warn("gitmoji-regex gem not found: #{e.class}: #{e.message}.\n\
|
46
|
+
warn("gitmoji-regex gem not found: #{e.class}: #{e.message}.\n\tSkipping gitmoji check and allowing commit to proceed.\n\tRecommendation: add 'gitmoji-regex' to your development dependencies to enable this check.")
|
47
|
+
exit 0
|
47
48
|
end
|
@@ -65,9 +65,11 @@ jobs:
|
|
65
65
|
|
66
66
|
steps:
|
67
67
|
- name: Checkout
|
68
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
68
69
|
uses: actions/checkout@v5
|
69
70
|
|
70
71
|
- name: Setup Ruby & RubyGems
|
72
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
71
73
|
uses: ruby/setup-ruby@v1
|
72
74
|
with:
|
73
75
|
ruby-version: ${{ matrix.ruby }}
|
@@ -79,8 +81,11 @@ jobs:
|
|
79
81
|
# We need to do this first to get appraisal installed.
|
80
82
|
# NOTE: This does not use the primary Gemfile at all.
|
81
83
|
- name: Install Root Appraisal
|
84
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
82
85
|
run: bundle
|
83
86
|
- name: Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
|
87
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
84
88
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
85
89
|
- name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
|
90
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
86
91
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
|
data/.github/workflows/heads.yml
CHANGED
@@ -64,9 +64,11 @@ jobs:
|
|
64
64
|
|
65
65
|
steps:
|
66
66
|
- name: Checkout
|
67
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
67
68
|
uses: actions/checkout@v5
|
68
69
|
|
69
70
|
- name: Setup Ruby & RubyGems
|
71
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
70
72
|
uses: ruby/setup-ruby@v1
|
71
73
|
with:
|
72
74
|
ruby-version: ${{ matrix.ruby }}
|
@@ -78,9 +80,11 @@ jobs:
|
|
78
80
|
# We need to do this first to get appraisal installed.
|
79
81
|
# NOTE: This does not use the primary Gemfile at all.
|
80
82
|
- name: "Install Root Appraisal"
|
83
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
81
84
|
run: bundle
|
82
85
|
|
83
86
|
- name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
|
87
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
84
88
|
id: bundleAttempt1
|
85
89
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
86
90
|
# Continue to the next step on failure
|
@@ -88,10 +92,11 @@ jobs:
|
|
88
92
|
|
89
93
|
# Effectively an automatic retry of the previous step.
|
90
94
|
- name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
|
91
|
-
id: bundleAttempt2
|
92
95
|
# If bundleAttempt1 failed, try again here; Otherwise skip.
|
93
|
-
if: steps.bundleAttempt1.outcome == 'failure'
|
96
|
+
if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
97
|
+
id: bundleAttempt2
|
94
98
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
95
99
|
|
96
100
|
- name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
|
101
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
97
102
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
|
@@ -64,9 +64,11 @@ jobs:
|
|
64
64
|
|
65
65
|
steps:
|
66
66
|
- name: Checkout
|
67
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
67
68
|
uses: actions/checkout@v5
|
68
69
|
|
69
70
|
- name: Setup Ruby & RubyGems
|
71
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
70
72
|
uses: ruby/setup-ruby@v1
|
71
73
|
with:
|
72
74
|
ruby-version: ${{ matrix.ruby }}
|
@@ -78,9 +80,11 @@ jobs:
|
|
78
80
|
# We need to do this first to get appraisal installed.
|
79
81
|
# NOTE: This does not use the primary Gemfile at all.
|
80
82
|
- name: "Install Root Appraisal"
|
83
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
81
84
|
run: bundle
|
82
85
|
|
83
86
|
- name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
|
87
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
84
88
|
id: bundleAttempt1
|
85
89
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
86
90
|
# Continue to the next step on failure
|
@@ -88,10 +92,11 @@ jobs:
|
|
88
92
|
|
89
93
|
# Effectively an automatic retry of the previous step.
|
90
94
|
- name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
|
91
|
-
id: bundleAttempt2
|
92
95
|
# If bundleAttempt1 failed, try again here; Otherwise skip.
|
93
|
-
if: steps.bundleAttempt1.outcome == 'failure'
|
96
|
+
if: ${{ steps.bundleAttempt1.outcome == 'failure' && !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
97
|
+
id: bundleAttempt2
|
94
98
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
95
99
|
|
96
100
|
- name: Tests for ${{ matrix.ruby }}@${{ matrix.appraisal }} via ${{ matrix.exec_cmd }}
|
101
|
+
if: ${{ !(env.ACT && startsWith(matrix.ruby, 'jruby')) }}
|
97
102
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
|
data/.github/workflows/jruby.yml
CHANGED
@@ -56,9 +56,11 @@ jobs:
|
|
56
56
|
|
57
57
|
steps:
|
58
58
|
- name: Checkout
|
59
|
+
if: ${{ !env.ACT }}
|
59
60
|
uses: actions/checkout@v5
|
60
61
|
|
61
62
|
- name: Setup Ruby & RubyGems
|
63
|
+
if: ${{ !env.ACT }}
|
62
64
|
uses: ruby/setup-ruby@v1
|
63
65
|
with:
|
64
66
|
ruby-version: ${{ matrix.ruby }}
|
@@ -70,8 +72,11 @@ jobs:
|
|
70
72
|
# We need to do this first to get appraisal installed.
|
71
73
|
# NOTE: This does not use the primary Gemfile at all.
|
72
74
|
- name: Install Root Appraisal
|
75
|
+
if: ${{ !env.ACT }}
|
73
76
|
run: bundle
|
74
77
|
- name: Appraisal for ${{ matrix.appraisal }}
|
78
|
+
if: ${{ !env.ACT }}
|
75
79
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
76
80
|
- name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
|
81
|
+
if: ${{ !env.ACT }}
|
77
82
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
|
@@ -46,9 +46,11 @@ jobs:
|
|
46
46
|
|
47
47
|
steps:
|
48
48
|
- name: Checkout
|
49
|
+
if: ${{ !env.ACT }}
|
49
50
|
uses: actions/checkout@v5
|
50
51
|
|
51
52
|
- name: Setup Ruby & RubyGems
|
53
|
+
if: ${{ !env.ACT }}
|
52
54
|
uses: ruby/setup-ruby@v1
|
53
55
|
with:
|
54
56
|
ruby-version: ${{ matrix.ruby }}
|
@@ -60,8 +62,11 @@ jobs:
|
|
60
62
|
# We need to do this first to get appraisal installed.
|
61
63
|
# NOTE: This does not use the primary Gemfile at all.
|
62
64
|
- name: Install Root Appraisal
|
65
|
+
if: ${{ !env.ACT }}
|
63
66
|
run: bundle
|
64
67
|
- name: Appraisal for ${{ matrix.appraisal }}
|
68
|
+
if: ${{ !env.ACT }}
|
65
69
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
|
66
70
|
- name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }}
|
71
|
+
if: ${{ !env.ACT }}
|
67
72
|
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }}
|
data/CHANGELOG.md
CHANGED
@@ -24,6 +24,32 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
24
24
|
### Fixed
|
25
25
|
### Security
|
26
26
|
|
27
|
+
## [1.1.7] - 2025-09-06
|
28
|
+
- TAG: [v1.1.7][1.1.7t]
|
29
|
+
- COVERAGE: 97.12% -- 3237/3333 lines in 23 files
|
30
|
+
- BRANCH COVERAGE: 81.95% -- 1344/1640 branches in 23 files
|
31
|
+
- 76.97% documented
|
32
|
+
### Added
|
33
|
+
- rake task - `appraisal:install`
|
34
|
+
- initial setup for projects that didn't previously use Appraisal
|
35
|
+
### Changed
|
36
|
+
- .git-hooks/commit-msg allows commit if gitmoji-regex is unavailable
|
37
|
+
- simplified `*Task` classes' `task_abort` methods to just raise Kettle::Dev::Error
|
38
|
+
- Allows caller to decide how to handle.
|
39
|
+
### Removed
|
40
|
+
- addressable, rake runtime dependencies
|
41
|
+
- moved to optional, or development dependencies
|
42
|
+
### Fixed
|
43
|
+
- Fix local CI via act for templated workflows (skip JRuby in nektos/act locally)
|
44
|
+
|
45
|
+
## [1.1.6] - 2025-09-05
|
46
|
+
- TAG: [v1.1.6][1.1.6t]
|
47
|
+
- COVERAGE: 97.06% -- 3241/3339 lines in 23 files
|
48
|
+
- BRANCH COVERAGE: 81.83% -- 1347/1646 branches in 23 files
|
49
|
+
- 76.97% documented
|
50
|
+
### Fixed
|
51
|
+
- bin/rake test works for minitest
|
52
|
+
|
27
53
|
## [1.1.5] - 2025-09-04
|
28
54
|
- TAG: [v1.1.5][1.1.5t]
|
29
55
|
- COVERAGE: 33.87% -- 1125/3322 lines in 22 files
|
@@ -496,7 +522,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
496
522
|
- Selecting will run the selected workflow via `act`
|
497
523
|
- This may move to its own gem in the future.
|
498
524
|
|
499
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
525
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.7...HEAD
|
526
|
+
[1.1.7]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.6...v1.1.7
|
527
|
+
[1.1.7t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.7
|
528
|
+
[1.1.6]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.5...v1.1.6
|
529
|
+
[1.1.6t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.6
|
500
530
|
[1.1.5]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.4...v1.1.5
|
501
531
|
[1.1.5t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.5
|
502
532
|
[1.1.4]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.3...v1.1.4
|
data/README.md
CHANGED
@@ -905,7 +905,7 @@ Thanks for RTFM. ☺️
|
|
905
905
|
[📌gitmoji]:https://gitmoji.dev
|
906
906
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
907
907
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
908
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-3.
|
908
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-3.333-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
909
909
|
[🔐security]: SECURITY.md
|
910
910
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
911
911
|
[📄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
@@ -505,7 +505,7 @@ Thanks for RTFM. ☺️
|
|
505
505
|
[📌gitmoji]:https://gitmoji.dev
|
506
506
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
507
507
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
508
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-3.
|
508
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-3.333-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
509
509
|
[🔐security]: SECURITY.md
|
510
510
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
511
511
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/Rakefile.example
CHANGED
@@ -2,4 +2,7 @@
|
|
2
2
|
# git gem is not a direct dependency for two reasons:
|
3
3
|
# 1. it is incompatible with Truffleruby v23
|
4
4
|
# 2. it depends on activesupport, which is too heavy
|
5
|
-
gem "git", ">= 1.19.1"
|
5
|
+
gem "git", ">= 1.19.1" # ruby >= 2.3
|
6
|
+
|
7
|
+
# URL parsing with Unicode support (falls back to URI if not available)
|
8
|
+
gem "addressable", ">= 2.8", "< 3" # ruby >= 2.2
|
@@ -4,6 +4,33 @@
|
|
4
4
|
begin
|
5
5
|
require "appraisal/task"
|
6
6
|
|
7
|
+
desc("Install Appraisal gemfiles (initial setup for projects that didn't previously use Appraisal)")
|
8
|
+
task("appraisal:install") do
|
9
|
+
bundle = Gem.bindir ? File.join(Gem.bindir, "bundle") : "bundle"
|
10
|
+
|
11
|
+
run_in_unbundled = proc do
|
12
|
+
env = {"BUNDLE_GEMFILE" => "Appraisal.root.gemfile"}
|
13
|
+
|
14
|
+
# 1) bundle install --gemfile Appraisal.root.gemfile
|
15
|
+
ok = system(bundle, "install", "--gemfile", "Appraisal.root.gemfile")
|
16
|
+
abort("appraisal:install failed: bundle install --gemfile Appraisal.root.gemfile") unless ok
|
17
|
+
|
18
|
+
# 2) BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal install
|
19
|
+
ok = system(env, bundle, "exec", "appraisal", "install")
|
20
|
+
abort("appraisal:install failed: bundle exec appraisal install") unless ok
|
21
|
+
|
22
|
+
# 3) bundle exec rake rubocop_gradual:autocorrect
|
23
|
+
ok = system(bundle, "exec", "rake", "rubocop_gradual:autocorrect")
|
24
|
+
abort("appraisal:update failed: rubocop_gradual:autocorrect") unless ok
|
25
|
+
end
|
26
|
+
|
27
|
+
if defined?(Bundler)
|
28
|
+
Bundler.with_unbundled_env(&run_in_unbundled)
|
29
|
+
else
|
30
|
+
run_in_unbundled.call
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
7
34
|
desc("Update Appraisal gemfiles and run RuboCop Gradual autocorrect")
|
8
35
|
task("appraisal:update") do
|
9
36
|
bundle = Gem.bindir ? File.join(Gem.bindir, "bundle") : "bundle"
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "fileutils"
|
4
|
+
|
3
5
|
# Setup RSpec
|
4
6
|
begin
|
5
7
|
require "rspec/core/rake_task"
|
@@ -20,7 +22,9 @@ begin
|
|
20
22
|
require "rake/testtask"
|
21
23
|
|
22
24
|
Rake::TestTask.new(:test) do |t|
|
23
|
-
t.
|
25
|
+
t.libs << "test"
|
26
|
+
t.test_files = FileList["test/**/*test*.rb"]
|
27
|
+
t.verbose = true
|
24
28
|
end
|
25
29
|
rescue LoadError
|
26
30
|
warn("[kettle-dev][spec_test.rake] failed to load rake/testtask") if Kettle::Dev::DEBUGGING
|
@@ -29,16 +33,3 @@ rescue LoadError
|
|
29
33
|
warn("NOTE: minitest isn't installed, or is disabled for #{RUBY_VERSION} in the current environment")
|
30
34
|
end
|
31
35
|
end
|
32
|
-
|
33
|
-
# rubocop:disable Rake/DuplicateTask
|
34
|
-
if Rake::Task.task_defined?("spec") && !Rake::Task.task_defined?("test")
|
35
|
-
desc "run spec task with test task"
|
36
|
-
task test: :spec
|
37
|
-
elsif !Rake::Task.task_defined?("spec") && Rake::Task.task_defined?("test")
|
38
|
-
desc "run test task with spec task"
|
39
|
-
task spec: :test
|
40
|
-
else
|
41
|
-
# Add spec as pre-requisite to 'test'
|
42
|
-
Rake::Task[:test].enhance(["spec"])
|
43
|
-
end
|
44
|
-
# rubocop:enable Rake/DuplicateTask
|
@@ -15,11 +15,7 @@ module Kettle
|
|
15
15
|
|
16
16
|
# Local abort indirection to enable mocking via ExitAdapter
|
17
17
|
def task_abort(msg)
|
18
|
-
|
19
|
-
raise Kettle::Dev::Error, msg
|
20
|
-
else
|
21
|
-
Kettle::Dev::ExitAdapter.abort(msg)
|
22
|
-
end
|
18
|
+
raise Kettle::Dev::Error, msg
|
23
19
|
end
|
24
20
|
|
25
21
|
# Runs `act` for a selected workflow. Option can be a short code or workflow basename.
|
@@ -6,13 +6,11 @@ module Kettle
|
|
6
6
|
module InstallTask
|
7
7
|
module_function
|
8
8
|
|
9
|
-
# Abort wrapper that avoids terminating the
|
9
|
+
# Abort wrapper that avoids terminating the current rake task process.
|
10
|
+
# Always raise Kettle::Dev::Error so callers can decide whether to handle
|
11
|
+
# it without terminating the process (e.g., in tests or non-interactive runs).
|
10
12
|
def task_abort(msg)
|
11
|
-
|
12
|
-
raise Kettle::Dev::Error, msg
|
13
|
-
else
|
14
|
-
Kettle::Dev::ExitAdapter.abort(msg)
|
15
|
-
end
|
13
|
+
raise Kettle::Dev::Error, msg
|
16
14
|
end
|
17
15
|
|
18
16
|
def run
|
@@ -10,11 +10,7 @@ module Kettle
|
|
10
10
|
|
11
11
|
# Abort wrapper that avoids terminating the entire process during specs
|
12
12
|
def task_abort(msg)
|
13
|
-
|
14
|
-
raise Kettle::Dev::Error, msg
|
15
|
-
else
|
16
|
-
Kettle::Dev::ExitAdapter.abort(msg)
|
17
|
-
end
|
13
|
+
raise Kettle::Dev::Error, msg
|
18
14
|
end
|
19
15
|
|
20
16
|
# Execute the template operation into the current project.
|
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.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter H. Boling
|
@@ -44,33 +44,13 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '13.0'
|
47
|
-
type: :
|
47
|
+
type: :development
|
48
48
|
prerelease: false
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '13.0'
|
54
|
-
- !ruby/object:Gem::Dependency
|
55
|
-
name: addressable
|
56
|
-
requirement: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: '2.8'
|
61
|
-
- - "<"
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: '3'
|
64
|
-
type: :runtime
|
65
|
-
prerelease: false
|
66
|
-
version_requirements: !ruby/object:Gem::Requirement
|
67
|
-
requirements:
|
68
|
-
- - ">="
|
69
|
-
- !ruby/object:Gem::Version
|
70
|
-
version: '2.8'
|
71
|
-
- - "<"
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
version: '3'
|
74
54
|
- !ruby/object:Gem::Dependency
|
75
55
|
name: bundler-audit
|
76
56
|
requirement: !ruby/object:Gem::Requirement
|
@@ -374,10 +354,10 @@ licenses:
|
|
374
354
|
- MIT
|
375
355
|
metadata:
|
376
356
|
homepage_uri: https://kettle-dev.galtzo.com/
|
377
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
378
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.
|
357
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.7
|
358
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.7/CHANGELOG.md
|
379
359
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
380
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
360
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.7
|
381
361
|
funding_uri: https://github.com/sponsors/pboling
|
382
362
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
383
363
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
Binary file
|