capistrano-ec2 0.1.2 → 0.1.3
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 +4 -4
- data/RELEASE.md +2 -0
- data/lib/capistrano/ec2/capistrano_monkey_patch.rb +5 -1
- data/lib/capistrano/ec2/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f31bda2920a402a63a10fdfff62c5d207f4f2131
|
|
4
|
+
data.tar.gz: 0b60a578a49653a39f8521bdaa13248283f1046f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a1053c39114357cabcc6934c1d307a2968a1362cdf66309dd91ea6842b0011b8c519cdd577b04594e3bda7f6ce104e9e368672d6526a128d8ef872ac6734017
|
|
7
|
+
data.tar.gz: 498b0202e59f7fe3ec6f1641ef909027e306cd469ece355655e85594ce7d20d6974095e96ea02b26578072f9daf1f8a806168363b1093ea157d6f08737105311
|
data/RELEASE.md
ADDED
|
@@ -8,7 +8,11 @@ module Capistrano
|
|
|
8
8
|
region: fetch(:region),
|
|
9
9
|
use_iam_profile: fetch(:use_iam_profile, false)
|
|
10
10
|
|
|
11
|
-
filters = {
|
|
11
|
+
filters = {
|
|
12
|
+
"tag:ec2_env" => ec2_env,
|
|
13
|
+
"tag:role" => ec2_role,
|
|
14
|
+
'instance-state-name': 'running'
|
|
15
|
+
}
|
|
12
16
|
|
|
13
17
|
ec2.servers.all(filters).map.with_index do |ec2_server, index|
|
|
14
18
|
next unless ec2_server.ready?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom de Vries
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -93,6 +93,7 @@ files:
|
|
|
93
93
|
- Gemfile
|
|
94
94
|
- LICENSE.txt
|
|
95
95
|
- README.md
|
|
96
|
+
- RELEASE.md
|
|
96
97
|
- Rakefile
|
|
97
98
|
- bin/console
|
|
98
99
|
- bin/setup
|
|
@@ -121,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
122
|
version: '0'
|
|
122
123
|
requirements: []
|
|
123
124
|
rubyforge_project:
|
|
124
|
-
rubygems_version: 2.5.2
|
|
125
|
+
rubygems_version: 2.5.2.3
|
|
125
126
|
signing_key:
|
|
126
127
|
specification_version: 4
|
|
127
128
|
summary: A Capistrano patch to simplify deployment to Amazon EC2.
|