foobara 0.0.69 → 0.0.70
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fa42ccdb3430fea47bc5de7590f08ef9c640e87d747eec8d4a594d4fd8d8a91
|
4
|
+
data.tar.gz: 797a5cef37a8478295bc5c887766ec69819fa150c005bd49e7501d3609337ff5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 771d25f93db9d12e31a9f74143840375bf1cd702f7b02f394c44411c12f50d37ce210213737794778dca08e6264ac4166b094930edb6969f20117f2b888d7e49
|
7
|
+
data.tar.gz: c565ae11e35f1a767761823655e2294a70cd07fa02acb403bb6f37d43a3f471bb909d4b315e7defaaadb56b999e9778466092238f2f89af3722aa169666eee11
|
data/CHANGELOG.md
CHANGED
@@ -56,7 +56,15 @@ module Foobara
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def depends_on(*subcommand_classes)
|
59
|
-
|
59
|
+
if subcommand_classes.empty?
|
60
|
+
return @depends_on if defined?(@depends_on)
|
61
|
+
|
62
|
+
@depends_on = if self == Foobara::Command
|
63
|
+
Set.new
|
64
|
+
else
|
65
|
+
superclass.depends_on.dup
|
66
|
+
end
|
67
|
+
end
|
60
68
|
|
61
69
|
if subcommand_classes.length == 1
|
62
70
|
subcommand_classes = Util.array(subcommand_classes.first)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.70
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bigdecimal
|
@@ -460,7 +460,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
460
460
|
- !ruby/object:Gem::Version
|
461
461
|
version: '0'
|
462
462
|
requirements: []
|
463
|
-
rubygems_version: 3.6.
|
463
|
+
rubygems_version: 3.6.5
|
464
464
|
specification_version: 4
|
465
465
|
summary: A command-centric and discoverable software framework with a focus on domain
|
466
466
|
concepts and abstracting away integration code
|