capistrano3-autoscaling-deploy 0.2 → 0.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
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YWM5NGI2NDc1YzdhNTljNWI5MDgwNmVlNjBiYjQ2Yjg3ZDhkZWNjNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTMxNjc1NDZjZDFlZTQzNjNjMWY0ZGM5MzhlZTQ3M2FmYjNlYmJlOQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmZkYjcwMGZjNWI5YmViZWI5OWIyYWIyMjQ4NThiZDkzMzU4MjYyZjdmZDVh
|
10
|
+
YTJhYWRiNGUzYjM0MGZhZjgxYmYxYmE4YzcyMGFhNGRlYjYzMzE3MDM3Y2Iy
|
11
|
+
ZGJiYWU3NjY2M2QwOWFmMTUzYjk3OTE0Mjg4NGE4MGQ1YmJkOWE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzQ0ZTRlMmI3NjE0Zjk5YTdmNjJhZGNkNjJjYWRlODBkNWU4NzcyYzUzZTAz
|
14
|
+
ZTRkNTYxYzA4MzYzN2RkNWIzNzhiYTk4ZjZjYzY1NDg4NzE1M2Q5M2EzZjRl
|
15
|
+
ZWFiYzFlZjZhNTY1MDAxNjkyYTQ4NmY3MWEzMmExZjViNmYzMGU=
|
data/Gemfile.lock
CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Capistrano::AutoScalingDeploy::VERSION
|
9
9
|
spec.authors = ['Marcos Chicote']
|
10
10
|
spec.email = ['chicotemarcos@gmail.com']
|
11
|
-
spec.summary = %q{
|
11
|
+
spec.summary = %q{Deploy to AWS Auto Scaling group.}
|
12
12
|
spec.description = %q{Get all instances in an AutoScaling group by AutoScaling EC2 Tag and depoy.}
|
13
|
-
spec.homepage = ''
|
13
|
+
spec.homepage = 'https://github.com/mchicote/capistrano3-autoscaling-deploy'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.add_dependency 'aws-sdk', '~> 2'
|
22
22
|
spec.add_dependency 'capistrano', '~> 3'
|
23
|
-
spec.add_dependency 'capistrano-bundler'
|
23
|
+
spec.add_dependency 'capistrano-bundler', '~> 1.1.2'
|
24
24
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
25
25
|
spec.add_development_dependency 'rake'
|
26
26
|
end
|
@@ -1,2 +1,2 @@
|
|
1
1
|
require 'capistrano/bundler'
|
2
|
-
load File.expand_path('tasks/deploy.rake', __FILE__)
|
2
|
+
load File.expand_path('../tasks/deploy.rake', __FILE__)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano3-autoscaling-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.3'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcos Chicote
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: capistrano-bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 1.1.2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 1.1.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -104,7 +104,7 @@ files:
|
|
104
104
|
- lib/capistrano/tasks/deploy.rake
|
105
105
|
- lib/capistrano3-autoscaling-deploy.rb
|
106
106
|
- test/autoscaling_test.rb
|
107
|
-
homepage:
|
107
|
+
homepage: https://github.com/mchicote/capistrano3-autoscaling-deploy
|
108
108
|
licenses:
|
109
109
|
- MIT
|
110
110
|
metadata: {}
|
@@ -127,6 +127,6 @@ rubyforge_project:
|
|
127
127
|
rubygems_version: 2.4.5
|
128
128
|
signing_key:
|
129
129
|
specification_version: 4
|
130
|
-
summary:
|
130
|
+
summary: Deploy to AWS Auto Scaling group.
|
131
131
|
test_files:
|
132
132
|
- test/autoscaling_test.rb
|