alpha_omega 0.0.46 → 0.0.47
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/recipes/alpha_omega/deploy/scm/git.rb +1 -4
- data/recipes/alpha_omega/version.rb +1 -1
- metadata +20 -18
|
@@ -75,10 +75,7 @@ module Capistrano
|
|
|
75
75
|
execute = []
|
|
76
76
|
|
|
77
77
|
execute << "[[ -d #{destination}/.git ]] || #{git} clone #{verbose} #{variable(:repository)} #{destination}"
|
|
78
|
-
execute << "cd #{destination}"
|
|
79
|
-
execute << "#{git} fetch -q"
|
|
80
|
-
execute << "#{git} reset --hard #{revision}"
|
|
81
|
-
execute << "#{git} submodule update --init --recursive"
|
|
78
|
+
execute << "cd #{destination} && #{git} fetch -q && #{git} reset --hard #{revision} && #{git} submodule update --init --recursive"
|
|
82
79
|
|
|
83
80
|
execute
|
|
84
81
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alpha_omega
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 65
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 47
|
|
10
|
+
version: 0.0.47
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Nghiem
|
|
@@ -16,7 +16,8 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-08-31 00:00:00
|
|
19
|
+
date: 2011-08-31 00:00:00 +00:00
|
|
20
|
+
default_executable:
|
|
20
21
|
dependencies:
|
|
21
22
|
- !ruby/object:Gem::Dependency
|
|
22
23
|
name: grit
|
|
@@ -116,28 +117,29 @@ files:
|
|
|
116
117
|
- LICENSE
|
|
117
118
|
- README.mkd
|
|
118
119
|
- Procfile.rb
|
|
120
|
+
- libexec/stage
|
|
121
|
+
- libexec/rollback
|
|
122
|
+
- libexec/major
|
|
119
123
|
- libexec/compare
|
|
124
|
+
- libexec/shell
|
|
120
125
|
- libexec/deploy
|
|
121
|
-
- libexec/major
|
|
122
126
|
- libexec/patch
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
- recipes/alpha_omega/deploy/dependencies.rb
|
|
127
|
+
- recipes/alpha_omega/utils.rb
|
|
128
|
+
- recipes/alpha_omega/deploy.rb
|
|
129
|
+
- recipes/alpha_omega/version.rb
|
|
127
130
|
- recipes/alpha_omega/deploy/local_dependency.rb
|
|
128
|
-
- recipes/alpha_omega/deploy/remote_dependency.rb
|
|
129
|
-
- recipes/alpha_omega/deploy/scm/base.rb
|
|
130
|
-
- recipes/alpha_omega/deploy/scm/git.rb
|
|
131
|
-
- recipes/alpha_omega/deploy/scm.rb
|
|
132
131
|
- recipes/alpha_omega/deploy/strategy/base.rb
|
|
133
132
|
- recipes/alpha_omega/deploy/strategy/checkout.rb
|
|
134
133
|
- recipes/alpha_omega/deploy/strategy/remote.rb
|
|
135
|
-
- recipes/alpha_omega/deploy/
|
|
134
|
+
- recipes/alpha_omega/deploy/scm.rb
|
|
136
135
|
- recipes/alpha_omega/deploy/templates/maintenance.rhtml
|
|
137
|
-
- recipes/alpha_omega/deploy.rb
|
|
138
|
-
- recipes/alpha_omega/
|
|
139
|
-
- recipes/alpha_omega/
|
|
136
|
+
- recipes/alpha_omega/deploy/strategy.rb
|
|
137
|
+
- recipes/alpha_omega/deploy/scm/base.rb
|
|
138
|
+
- recipes/alpha_omega/deploy/scm/git.rb
|
|
139
|
+
- recipes/alpha_omega/deploy/dependencies.rb
|
|
140
|
+
- recipes/alpha_omega/deploy/remote_dependency.rb
|
|
140
141
|
- bin/deploy
|
|
142
|
+
has_rdoc: true
|
|
141
143
|
homepage: https://github.com/HeSYINUvSBZfxqA/alpha_omega
|
|
142
144
|
licenses: []
|
|
143
145
|
|
|
@@ -167,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
169
|
requirements: []
|
|
168
170
|
|
|
169
171
|
rubyforge_project:
|
|
170
|
-
rubygems_version: 1.
|
|
172
|
+
rubygems_version: 1.5.3
|
|
171
173
|
signing_key:
|
|
172
174
|
specification_version: 3
|
|
173
175
|
summary: alpha_omega capistrano recipes
|