eco-rake 0.2.12 → 0.2.13
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
- data/CHANGELOG.md +7 -1
- data/lib/eco-rake/lib/task/runner_launch.rb +3 -3
- data/lib/eco-rake/subtask.rb +4 -0
- data/lib/eco-rake/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fa2f6b50e9f4d3e5d1f14b7f5cf7a19de136fc43374a2851a11f8b2906ce96e
|
4
|
+
data.tar.gz: bfe879b5318215faa020ced4cba5190493a45938c396833313101d2a87558c52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c45dbb6ebd27e1c6093f45228b551142d3ac61d741fdf6c061b93f05bdebcb687bebc59ebe470088261d42e8b288a3c3f01bdef3495e86fe58c33a5d739c8ef
|
7
|
+
data.tar.gz: ba7997121ccd67390febb2256323f3207556e5bea4c6114bd3fbd010a36ec623e7336e3a792c3d3d2e6382dee8e3d5f99f407cbf3c456ffb1da896421d638900
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [0.2.
|
5
|
+
## [0.2.14] - 2025-02-xx
|
6
6
|
|
7
7
|
### Added
|
8
8
|
|
@@ -10,6 +10,12 @@ All notable changes to this project will be documented in this file.
|
|
10
10
|
|
11
11
|
### Fixed
|
12
12
|
|
13
|
+
## [0.2.13] - 2025-02-25
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
|
17
|
+
- Task option name compatibility on ruby command.
|
18
|
+
|
13
19
|
## [0.2.12] - 2025-02-25
|
14
20
|
|
15
21
|
### Fixed
|
@@ -50,10 +50,10 @@ class EcoRake
|
|
50
50
|
def task(*args)
|
51
51
|
if (callback = target_subtask.callback)
|
52
52
|
instance_exec(*args, &callback)
|
53
|
-
elsif respond_to?(target_subtask.
|
54
|
-
send(target_subtask.
|
53
|
+
elsif respond_to?(target_subtask.command_name, true)
|
54
|
+
send(target_subtask.command_name)
|
55
55
|
else
|
56
|
-
msg = "Undefined method to perform '#{target_subtask.
|
56
|
+
msg = "Undefined method to perform '#{target_subtask.command_name}'"
|
57
57
|
raise msg
|
58
58
|
end
|
59
59
|
end
|
data/lib/eco-rake/subtask.rb
CHANGED
data/lib/eco-rake/version.rb
CHANGED