capistrano-aws-ec2 0.1.7 → 0.1.8

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: f81df23d8d0fd91ec0118914d065f86cc3c9306989cb5ba73bea10722f99bc01
4
- data.tar.gz: 4b46e7443eb7ece57a5dd7a74c763c6cb0221f90477fe99e082cefcfc3bcfcb7
3
+ metadata.gz: 914e32b26ab0abcfe948a66fc48f145609ca93e3a47d51d64234fd678a09fd20
4
+ data.tar.gz: 28682ae9a90ab01371bf0daf6d697cbddc952281a6d597c3ca717173cf0da391
5
5
  SHA512:
6
- metadata.gz: 83a2ed3c4e74cd96b1fd940977b0d987cfa5ea358ce5a4139d10b828632b5a419aa0883f0ad0615ed4ae5655d92c3571b1e57d06cc9d884ae78a46d5f78b5c3d
7
- data.tar.gz: c546012741625dcbdb7bf0959f0593c5dee08ee0adc5d2f3dc58e08d824f681650f1fdaa4c2090ae82af14bac2267e4ac5d78c669a69014ff964510a479805f9
6
+ metadata.gz: bc9ee72cdfa1bf737783b64afc9b418d27d972e2bdc66e416e0c4f1d14d825df5790e36951babacb500c1938d70860017ce700141899c77076dd3ba4d8ab2ec1
7
+ data.tar.gz: f8e80672232c824c8fffde701554171344e8f2b9c5ef078f8edb3f5632e1b761b8f74c8e2d7eec2b4043cb85840e67f6d0d8f2226c5594a41adb50f0c957c54d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ #### 0.1.8 ####
5
+ * Fix some variable names
6
+
4
7
  #### 0.1.7 ####
5
8
  * Filter out non-running instances by default
6
9
 
@@ -13,7 +13,7 @@ module Capistrano
13
13
  next false if running_only && instance.state.code != EC2_STATE_RUNNING_CODE
14
14
 
15
15
  # Filter out instances not matching the given tags
16
- tags.all? { |k, v| i.tags.any? { |tag| tag.key == k && tag.value == v } }
16
+ tags.all? { |key, value| instance.tags.any? { |tag| tag.key == key && tag.value == value } }
17
17
  end
18
18
  end
19
19
 
@@ -3,7 +3,7 @@
3
3
  module Capistrano
4
4
  module Aws
5
5
  module Ec2
6
- VERSION = '0.1.7'
6
+ VERSION = '0.1.8'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-aws-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Sella
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-28 00:00:00.000000000 Z
11
+ date: 2022-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-ec2