capistrano-ec2-selfdeploy-tag 1.0.1 → 1.0.2.pre
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.
- data/lib/capistrano/ec2/selfdeploy/tag.rb +5 -0
- metadata +18 -8
|
@@ -29,6 +29,11 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
29
29
|
|
|
30
30
|
namespace :deploy do
|
|
31
31
|
after "deploy", "ec2:selfdeploy:tag:update_tag"
|
|
32
|
+
|
|
33
|
+
desc "What to do the first time the app is deployed"
|
|
34
|
+
task :first_time do
|
|
35
|
+
end
|
|
36
|
+
|
|
32
37
|
end
|
|
33
38
|
|
|
34
39
|
task :ec2_instance do
|
metadata
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-ec2-selfdeploy-tag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 961915996
|
|
5
|
+
prerelease: true
|
|
5
6
|
segments:
|
|
6
7
|
- 1
|
|
7
8
|
- 0
|
|
8
|
-
-
|
|
9
|
-
|
|
9
|
+
- 2
|
|
10
|
+
- pre
|
|
11
|
+
version: 1.0.2.pre
|
|
10
12
|
platform: ruby
|
|
11
13
|
authors:
|
|
12
14
|
- Ryan Conway
|
|
@@ -14,16 +16,18 @@ autorequire:
|
|
|
14
16
|
bindir: bin
|
|
15
17
|
cert_chain: []
|
|
16
18
|
|
|
17
|
-
date: 2011-09-
|
|
19
|
+
date: 2011-09-14 00:00:00 +01:00
|
|
18
20
|
default_executable:
|
|
19
21
|
dependencies:
|
|
20
22
|
- !ruby/object:Gem::Dependency
|
|
21
23
|
name: capistrano
|
|
22
24
|
prerelease: false
|
|
23
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
24
27
|
requirements:
|
|
25
28
|
- - ">="
|
|
26
29
|
- !ruby/object:Gem::Version
|
|
30
|
+
hash: 23
|
|
27
31
|
segments:
|
|
28
32
|
- 1
|
|
29
33
|
- 0
|
|
@@ -52,23 +56,29 @@ rdoc_options: []
|
|
|
52
56
|
require_paths:
|
|
53
57
|
- lib
|
|
54
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
55
60
|
requirements:
|
|
56
61
|
- - ">="
|
|
57
62
|
- !ruby/object:Gem::Version
|
|
63
|
+
hash: 3
|
|
58
64
|
segments:
|
|
59
65
|
- 0
|
|
60
66
|
version: "0"
|
|
61
67
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
none: false
|
|
62
69
|
requirements:
|
|
63
|
-
- - "
|
|
70
|
+
- - ">"
|
|
64
71
|
- !ruby/object:Gem::Version
|
|
72
|
+
hash: 25
|
|
65
73
|
segments:
|
|
66
|
-
-
|
|
67
|
-
|
|
74
|
+
- 1
|
|
75
|
+
- 3
|
|
76
|
+
- 1
|
|
77
|
+
version: 1.3.1
|
|
68
78
|
requirements: []
|
|
69
79
|
|
|
70
80
|
rubyforge_project: capistrano-ec2-selfdeploy-tag
|
|
71
|
-
rubygems_version: 1.3.
|
|
81
|
+
rubygems_version: 1.3.7
|
|
72
82
|
signing_key:
|
|
73
83
|
specification_version: 3
|
|
74
84
|
summary: Recreates a specified Git tag every time you deploy, with whatever codebase just got pushed live. This tag is used alongside another system, to deploy the latest production code to a newly autoscaled instance.
|