stacker_bee 2.1.1.pre250 → 2.1.1.pre252
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 +8 -8
- data/bin/stacker_bee +3 -2
- data/lib/stacker_bee/configuration.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MjU3MzAwMzBhYzg3NWE5YzQ4ZTYyMzllMzU4MjdlNjk2MjI3ZTA2Yg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YmU0NGU2MmUxNDllYzRmMzI4MmE0NGU1ZThhMWYwNDUwYTQ5M2Y5Mw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NzA1M2IwZGZkZWU4YTVlMDAyMmRlZmY0NTM0YWRmNzM1YWZmODI2NGQ2Yzdm
|
|
10
|
+
ZGUyYjgxMjFjNmEyNTExZDhiMTAyNjE2ZGU0NWU0M2M0ZTI5ZjYzYjUxN2M3
|
|
11
|
+
ODljNjZhY2Y1Y2JmNzkyNDc2Yzg1NGRiODBiNTMxZTE3MzBjNTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MzFhMDM2ZGRhYmI1ZWE2ZTA2NmE4ZGYyYTZmZGQzYzcyZjFlMWM2NTYyZWY0
|
|
14
|
+
ZjI1ODdiMDMzMGJkN2RmMTEwZjIzZTE2MzkyYzk4MGNiNjAyOTU1ZDYyZDBi
|
|
15
|
+
YzhhZGYwZWY5MTJlZGYyN2YwNzgxMDdkOTE4YTM1YzI0M2ZlYzk=
|
data/bin/stacker_bee
CHANGED
|
@@ -55,9 +55,10 @@ begin
|
|
|
55
55
|
optparse.parse!
|
|
56
56
|
if options[:config]
|
|
57
57
|
hash = File.read options[:config]
|
|
58
|
-
options.merge! YAML.load(hash)
|
|
58
|
+
options.merge! Hash[YAML.load(hash).map { |k, v| [k.to_sym, v] }]
|
|
59
59
|
end
|
|
60
|
-
unless
|
|
60
|
+
unless options.keys.include?(:config) ||
|
|
61
|
+
([:api_key, :secret_key, :url] - options.keys).empty?
|
|
61
62
|
puts "Please specify a config file or all of the following: " \
|
|
62
63
|
"--api_key, --secret_key and --url"
|
|
63
64
|
exit
|