rake-commander 0.2.7 → 0.2.10
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/rake-commander/options.rb +7 -1
- data/lib/rake-commander/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: e78481443a21eacbeddb2075f3b483b272a12b62097313934783b36d97666fc6
|
4
|
+
data.tar.gz: 4ba805e5fe073aa4ac10d856360364a6c0ab3e0a03bb30cec88f66bb9fed63f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eed71d7885cf03d3eb4341936ddeb0c5a155fa2058a5f0cc4f0dbb0d0fdfb20b3effee5c0671f07070b79025e031192f9e3150e389e478d768d92892de046237
|
7
|
+
data.tar.gz: cb696bb18618c2b547a7d3708d66ff54aa6011cd60e7e40e91f01b617e5ee7a5e7e5146ccbfd453070513faf0baac608383fe9deaf80a264bf3cfd2dcc9491e3
|
data/CHANGELOG.md
CHANGED
@@ -32,12 +32,18 @@ All notable changes to this project will be documented in this file.
|
|
32
32
|
- Option to globally enable/disable the 2nd patch?
|
33
33
|
* That would make this gem completely useless.
|
34
34
|
|
35
|
-
## [0.2.
|
35
|
+
## [0.2.11] - 2023-05-xx
|
36
36
|
|
37
37
|
### Added
|
38
38
|
### Fixed
|
39
39
|
### Changed
|
40
40
|
|
41
|
+
## [0.2.10] - 2023-05-01
|
42
|
+
|
43
|
+
### Fixed
|
44
|
+
- `RakeCommander::Options` clean `options_hash` inheritance.
|
45
|
+
|
46
|
+
|
41
47
|
## [0.2.7] - 2023-05-01
|
42
48
|
|
43
49
|
### Fixed
|
@@ -13,7 +13,12 @@ class RakeCommander
|
|
13
13
|
base.extend RakeCommander::Base::ClassHelpers
|
14
14
|
base.extend RakeCommander::Base::ClassInheritable
|
15
15
|
base.extend ClassMethods
|
16
|
-
base.attr_inheritable :banner
|
16
|
+
base.attr_inheritable :banner
|
17
|
+
base.attr_inheritable(:options_hash) do |value, subclass|
|
18
|
+
next nil unless value
|
19
|
+
value.values.uniq.each {|opt| subclass.send :add_to_options, opt}
|
20
|
+
subclass.send(:options_hash)
|
21
|
+
end
|
17
22
|
base.class_resolver :option_class, RakeCommander::Option
|
18
23
|
base.send :include, RakeCommander::Options::Result
|
19
24
|
base.send :include, RakeCommander::Options::Error
|
@@ -198,6 +203,7 @@ class RakeCommander
|
|
198
203
|
# @todo add `exception` parameter, to trigger an exception
|
199
204
|
# when `opt` name or short are taken (and override is `false`)
|
200
205
|
# @todo allow to specif if `:tail`, `:top` or `:base` (default)
|
206
|
+
# @note it is the unique access point to add an option.
|
201
207
|
# @param opt [RakeCommander::Option] the option to be added.
|
202
208
|
# @param override [Boolean] whether we should continue, may this action override (an)other option(s).
|
203
209
|
# @return [RakeCommander::Option, NilClass] the option that was added, `nil` is returned otherwise.
|