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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/aws_ec2/version.rb +1 -1
- data/lib/aws_ec2/waiter/ami.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3227a48fa2a6c36e779acedb91bbfaea06a530e9f0c365a6890475c09df452df
|
4
|
+
data.tar.gz: 05a665cf9089a013eb9e7c5038fcb85465eb357a035dd2ae141b0d78773e5df3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9800e0a49eb505abf500b9dca4df57157857f8e88ba93ecd82bd435574314b97ca2326aed7f542aa82b741b45a28562da645e081ef3580d1de4686f4bb344a3
|
7
|
+
data.tar.gz: 8d1aa33839f15cad070822673fe62e8692de51ae9af3ebb9d7cd60c37bc1919fe9e14b8726c224d2aa201275f9fdce7281f5e4a8033ffd17dacda89b903fcb42
|
data/CHANGELOG.md
CHANGED
@@ -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
|
data/lib/aws_ec2/version.rb
CHANGED
data/lib/aws_ec2/waiter/ami.rb
CHANGED
@@ -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
|