aws-ec2 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1868534625988933a50ea50d14c3ed0d0b13a825d4d29a6e5feab301fd0d969a
4
- data.tar.gz: ae53a49329501b81a4bc3283e4685e05da78b16da9e3bf79e2927ca067f7bcc4
3
+ metadata.gz: 3227a48fa2a6c36e779acedb91bbfaea06a530e9f0c365a6890475c09df452df
4
+ data.tar.gz: 05a665cf9089a013eb9e7c5038fcb85465eb357a035dd2ae141b0d78773e5df3
5
5
  SHA512:
6
- metadata.gz: 9efa949c751ffb52b187a722519b4c22ab0d3714a84a1cec7f96288557eb686dba403365e5b3e5a99719f7f5523417487856f3969e7f49d028397b4ec35ab49a
7
- data.tar.gz: 1e8da07ac54e0f09236a84c9a8bb839ef64df6eead452b4a0a511112b2eea857c125341ec087debab54eeb73a2048066ecb584b603ee19b7c77c750450c69567
6
+ metadata.gz: e9800e0a49eb505abf500b9dca4df57157857f8e88ba93ecd82bd435574314b97ca2326aed7f542aa82b741b45a28562da645e081ef3580d1de4686f4bb344a3
7
+ data.tar.gz: 8d1aa33839f15cad070822673fe62e8692de51ae9af3ebb9d7cd60c37bc1919fe9e14b8726c224d2aa201275f9fdce7281f5e4a8033ffd17dacda89b903fcb42
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [1.2.1]
7
+ - fix formatting after found ami with puts
8
+
6
9
  ## [1.2.0]
7
10
  - Merge pull request #6 from tongueroo/wait: aws-ec2 wait ami command
8
11
  - Fix dependencies: add aws-sdk-s3 dependency
@@ -1,3 +1,3 @@
1
1
  module AwsEc2
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
@@ -21,6 +21,7 @@ module AwsEc2::Waiter
21
21
  current_time += 30
22
22
  detected = detect_ami
23
23
  end
24
+ puts
24
25
 
25
26
  if current_time > timeout
26
27
  puts "ERROR: Timeout. Unable to detect and available ami: #{@options[:name]}"
@@ -28,7 +29,6 @@ module AwsEc2::Waiter
28
29
  else
29
30
  puts "Found available AMI: #{@options[:name]}"
30
31
  end
31
- puts
32
32
  end
33
33
 
34
34
  private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen