kumogata 0.3.5 → 0.3.6

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: 58914196d1e874c6e7d2634c98acc1ab3e0fb6f3
4
- data.tar.gz: 386325c6bcbe4915ad1020f1a38ba4073087d28a
3
+ metadata.gz: cfc81ee7f8cd547e369413ba6ee34ef9e41d984f
4
+ data.tar.gz: fe8121b7a458d7d8566ce60f564273b0eb32bfc5
5
5
  SHA512:
6
- metadata.gz: e5ae37b29e89a0122e3a352cb082a6635102eaccf890a82d07dd68aef2e69988ceda1d942ee117bb9904feb7e23b22b37f4f26c4f05c853bf3058a7e15fdb666
7
- data.tar.gz: e4fc3e29b20fbc2808cfed21be5d0dd0b6107e1d16fc3d3b890f6c8d46c1d38359b8e545e89b8efc77da2d431090b73c3467c85e6bfdd114b3d229cc490be0c8
6
+ metadata.gz: 6b955e7a3258b980a2a6f7646cf4229924088a22c0778bdf458e909af5cd3e5b214f4510076b160ef20235006ac10741c8b45533470a6f54a8aeaaad8ffeb63b
7
+ data.tar.gz: 9abbcb7bb5fe956ecec31b9d8e340517eca294e8e70b8c69b3527fdf78584cd5c18c52b36448f13d492cc7f8a83dbed5469d398459c3f628a067c2048e15007d
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?201403091822)](http://badge.fury.io/rb/kumogata)
9
- [![Build Status](https://drone.io/github.com/winebarrel/kumogata/status.png?201403091822)](https://drone.io/github.com/winebarrel/kumogata/latest)
8
+ [![Gem Version](https://badge.fury.io/rb/kumogata.png?201403092228)](http://badge.fury.io/rb/kumogata)
9
+ [![Build Status](https://drone.io/github.com/winebarrel/kumogata/status.png?201403092228)](https://drone.io/github.com/winebarrel/kumogata/latest)
10
10
 
11
11
  It can define a template in Ruby DSL, such as:
12
12
 
@@ -509,20 +509,20 @@ class Kumogata::Client
509
509
  def output_result(stack_name, outputs, summaries)
510
510
  puts <<-EOS
511
511
 
512
- Outputs:
513
- #{JSON.pretty_generate(outputs).colorize_as(:json)}
514
-
515
512
  Stack Resource Summaries:
516
513
  #{JSON.pretty_generate(summaries).colorize_as(:json)}
517
514
 
515
+ Outputs:
516
+ #{JSON.pretty_generate(outputs).colorize_as(:json)}
517
+
518
518
  (Save to `#{@options.result_log}`)
519
519
  EOS
520
520
 
521
521
  open(@options.result_log, 'wb') do |f|
522
522
  f.puts JSON.pretty_generate({
523
523
  'StackName' => stack_name,
524
- 'Outputs' => outputs,
525
524
  'StackResourceSummaries' => summaries,
525
+ 'Outputs' => outputs,
526
526
  })
527
527
  end
528
528
  end
@@ -1,3 +1,3 @@
1
1
  module Kumogata
2
- VERSION = '0.3.5'
2
+ VERSION = '0.3.6'
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.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara