capistrano-asg 0.5.3 → 0.5.4

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: 60b3f52a6e46ac7cc217c8fc3b7396b34da643fe
4
- data.tar.gz: 9aced17c55aeeb3478eb55e6fe50d346e9b2d1d1
3
+ metadata.gz: 2bb3270f8c0785153aab26555b92444813e43404
4
+ data.tar.gz: 6473b0bbcf40ba94590939df3d4b8bc9bf2c8619
5
5
  SHA512:
6
- metadata.gz: 7d945f49690a732a8e463cd0bc7ee72aaf21cc517161c34352848e679536c5f432eaa0f62478fcb3cbc25a4a268d35c782b9ff4ec28acc8c49dfa8947ac52283
7
- data.tar.gz: ca14d6a25ad6b59ebe4dc4a7414b52d335eef428d97ceb3dc1a3989dc984474023327dc1c7da6ee917b866f26d025bbb053e231bb5c759fe2f11668f493478e0
6
+ metadata.gz: 7554288b202695c4164d90ff1e3f2f77254fd180dfdd999ab7fee996c3382281cd1b869cdf4b02887288a49b3d5ceeaded0209b09279b61ba3480eb3d4270841
7
+ data.tar.gz: 160de421be271cc102cf6899462cbec1ab42db13d96d4cc6778894e9e59271ca85eab863ba7a6fd68de5d50ceb97c643788ef5b1e4c450063e6600547d07362f
@@ -1,3 +1,11 @@
1
+ # 0.5.4
2
+
3
+ * Fix a small bug caused by a typo
4
+
5
+ # 0.5.3
6
+
7
+ * Add support to access ID(s) for new AMI(s) created by capistrano-asg
8
+
1
9
  # 0.5.2
2
10
 
3
11
  * Run after deploy:finishing instead of after deploy
@@ -39,7 +39,7 @@ def autoscale(groupname, *args)
39
39
 
40
40
  asg_instances.each do |asg_instance|
41
41
  if asg_instance.health_status != 'Healthy'
42
- puts "Autoscaling: Skipping unhealthy instance #{instance.id}"
42
+ puts "Autoscaling: Skipping unhealthy instance #{asg_instance.id}"
43
43
  else
44
44
  ec2_instance = ec2_resource.instance(asg_instance.id)
45
45
  hostname = ec2_instance.private_ip_address
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Capistrano
4
4
  module Asg
5
- VERSION = '0.5.3'
5
+ VERSION = '0.5.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-asg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Logan Serman
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-08-07 00:00:00.000000000 Z
13
+ date: 2017-09-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
180
  version: '0'
181
181
  requirements: []
182
182
  rubyforge_project:
183
- rubygems_version: 2.5.2
183
+ rubygems_version: 2.6.11
184
184
  signing_key:
185
185
  specification_version: 4
186
186
  summary: Capistrano plugin for deploying to AWS AutoScale Groups.