kumogata 0.3.7 → 0.3.8
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/README.md +2 -2
- data/bin/kumogata +1 -1
- data/lib/kumogata/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5f019ad68bd03ebc7e79a226088125e9d455340
|
|
4
|
+
data.tar.gz: a95ba8fd56384b9fe5e5d5afdf254f78b7925b82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1965d76ea884b3e165416ede454c98cd348477492b4c66021f209ce815e7d315f4220c7106b43bf96704cbe94d097621f9ff062ae6ed6d79590d56c98d99333b
|
|
7
|
+
data.tar.gz: 08bffdf983ee8c685bad99dc3dd61aeae3b58d58466c8f7d2998a995b5c80455d2b2fd921ced59e7afcf85e49a4fbb65758fa49b84dc37ba99ca0af3fc01813f
|
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
|
|
data/bin/kumogata
CHANGED
|
@@ -39,7 +39,7 @@ begin
|
|
|
39
39
|
out = Kumogata::Client.new(options).send(command, *arguments)
|
|
40
40
|
puts out if out
|
|
41
41
|
rescue Exception => e
|
|
42
|
-
$stderr.puts("[ERROR] #{e.message}".red)
|
|
42
|
+
$stderr.puts("[ERROR] #{e.message}".red) unless e.kind_of?(Interrupt)
|
|
43
43
|
|
|
44
44
|
if options and options.debug?
|
|
45
45
|
raise e
|
data/lib/kumogata/version.rb
CHANGED