kumogata 0.2.17 → 0.2.18
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/README.md +2 -2
- data/lib/kumogata/argument_parser.rb +1 -1
- data/lib/kumogata/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
M2RiMjE5OGYxYmZkY2NiZDBkNzBjMGE0ZTdkN2UwMzE5OWRhZjJjMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MmE4MGE2NTQwMGQ5MTAxZDZkYzEwMjVmNWU3NjA1MzUxODhiMjFhNg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ODlkMTM4MTdmMDJiMTBlMjY3MzM5MDEzZDY4MzBjYzE2M2FmY2MxM2M3ZjI0
|
|
10
|
+
OTM4ODdhZDZkOWQ1NWU1NmFiZGQzODFhZGMyYjViMTRmMDJmYzQ4OTQ2MjIz
|
|
11
|
+
M2VjNzUwZTAyOGU5YzQzYTM2YjI0M2Q0NWFhYzQyNTMwNjk0YzM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDFmODJiOTYyNmE0MTg4ZDkxMzllZWMyYjg2NGE5ZDFiNWM3MmU1NzIxMjcy
|
|
14
|
+
NDdjMTk5MWI3ZTdkYWM1ZThjZTI3M2IwYzFkMzdjNDM5ZTcxNmE5ZTVmNDgx
|
|
15
|
+
NTA4YTAyZGFjZmZmZDk1YjBhOTc5YmE3NWU1ZTc5ZmU1NTIyNTY=
|
data/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Kumogata is a tool for [AWS CloudFormation](https://aws.amazon.com/cloudformation/).
|
|
7
7
|
|
|
8
|
-
[](http://badge.fury.io/rb/kumogata)
|
|
9
|
+
[](https://drone.io/github.com/winebarrel/kumogata/latest)
|
|
10
10
|
|
|
11
11
|
It can define a template in Ruby DSL, such as:
|
|
12
12
|
|
|
@@ -134,6 +134,7 @@ class Kumogata::ArgumentParser
|
|
|
134
134
|
$kumogata.command = command
|
|
135
135
|
$kumogata.arguments = arguments
|
|
136
136
|
$kumogata.options = options
|
|
137
|
+
options = $kumogata.options # Copy of the reference
|
|
137
138
|
|
|
138
139
|
[command, arguments, options]
|
|
139
140
|
end
|
|
@@ -198,7 +199,6 @@ class Kumogata::ArgumentParser
|
|
|
198
199
|
end
|
|
199
200
|
|
|
200
201
|
options.parameters = parameters
|
|
201
|
-
$kumogata.parameters = options.parameters
|
|
202
202
|
|
|
203
203
|
if options.encrypt_parameters? and not options.skip_send_password?
|
|
204
204
|
options.parameters[Kumogata::ENCRYPTION_PASSWORD] = passwd.encode64
|
data/lib/kumogata/version.rb
CHANGED