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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22ff7ef0579f29f4feacbd236d4a990b12693e3a
4
- data.tar.gz: a11ada0e5e231ef01b7f17ecd984e8263fb7ad90
3
+ metadata.gz: e5f019ad68bd03ebc7e79a226088125e9d455340
4
+ data.tar.gz: a95ba8fd56384b9fe5e5d5afdf254f78b7925b82
5
5
  SHA512:
6
- metadata.gz: b9d2e1cd5dbcf3f58f46bda41116467f0dceb7d341e7e276f75bb547359a15c329622f666df8e11578dd266c6b780243a9ec5684193dbabc5aa9348232d9aeff
7
- data.tar.gz: 441d2efcd2a8f8d8efbf14aada14623240a5f9ba9b7f8567143b483f9c82bcc1dc41f1cdd8c4ba7dc56936dac9b0ee8314b9bf474a2502430e97353bdbcd2ba1
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
- [![Gem Version](https://badge.fury.io/rb/kumogata.png?201403092302)](http://badge.fury.io/rb/kumogata)
9
- [![Build Status](https://drone.io/github.com/winebarrel/kumogata/status.png?201403092302)](https://drone.io/github.com/winebarrel/kumogata/latest)
8
+ [![Gem Version](https://badge.fury.io/rb/kumogata.png?201403092327)](http://badge.fury.io/rb/kumogata)
9
+ [![Build Status](https://drone.io/github.com/winebarrel/kumogata/status.png?201403092327)](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
@@ -1,3 +1,3 @@
1
1
  module Kumogata
2
- VERSION = '0.3.7'
2
+ VERSION = '0.3.8'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kumogata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara