alpha_omega 0.0.72 → 0.0.73

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.
@@ -236,7 +236,6 @@ module AlphaOmega
236
236
 
237
237
  node = YAML.load(IO.read(fname))
238
238
  node["node_name"] = node_name
239
- node["pod_context"] = pod
240
239
 
241
240
  acc[node_name] = yield node_name, "#{node_name}#{pod["node_suffix"]}", node unless node["virtual"]
242
241
  acc
@@ -248,7 +247,7 @@ module AlphaOmega
248
247
  cap_groups = {}
249
248
 
250
249
  nodes.each do |node_name, node|
251
- remote_name = "#{node_name}#{node["pod_context"]["node_suffix"]}"
250
+ remote_name = "#{node_name}#{node["q_name"]}"
252
251
  (node["cap_group"] || []).each do |g|
253
252
  cap_groups[g] ||= {}
254
253
  cap_groups[g][remote_name] = node
@@ -1,3 +1,3 @@
1
1
  module AlphaOmega
2
- Version = "0.0.72"
2
+ Version = "0.0.73"
3
3
  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: 143
4
+ hash: 141
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 72
10
- version: 0.0.72
9
+ - 73
10
+ version: 0.0.73
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Nghiem
@@ -16,8 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-08-31 00:00:00 +00:00
20
- default_executable:
19
+ date: 2011-08-31 00:00:00 Z
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
23
22
  name: grit
@@ -131,32 +130,30 @@ files:
131
130
  - LICENSE
132
131
  - README.mkd
133
132
  - Procfile.rb
134
- - libexec/rollback
135
133
  - libexec/stage
136
- - libexec/patch
137
- - libexec/compare
138
- - libexec/check
139
- - libexec/deploy
140
134
  - libexec/shell
135
+ - libexec/check
141
136
  - libexec/dna
142
- - libexec/cook
137
+ - libexec/compare
143
138
  - libexec/hosts
139
+ - libexec/rollback
140
+ - libexec/patch
141
+ - libexec/deploy
142
+ - lib/alpha_omega/utils.rb
144
143
  - lib/alpha_omega/deploy.rb
145
144
  - lib/alpha_omega/version.rb
146
- - lib/alpha_omega/deploy/scm.rb
147
- - lib/alpha_omega/deploy/dependencies.rb
148
145
  - lib/alpha_omega/deploy/templates/maintenance.rhtml
149
146
  - lib/alpha_omega/deploy/strategy.rb
150
- - lib/alpha_omega/deploy/scm/base.rb
151
- - lib/alpha_omega/deploy/scm/git.rb
152
- - lib/alpha_omega/deploy/strategy/base.rb
147
+ - lib/alpha_omega/deploy/dependencies.rb
153
148
  - lib/alpha_omega/deploy/strategy/checkout.rb
149
+ - lib/alpha_omega/deploy/strategy/base.rb
154
150
  - lib/alpha_omega/deploy/strategy/remote.rb
151
+ - lib/alpha_omega/deploy/scm/base.rb
152
+ - lib/alpha_omega/deploy/scm/git.rb
153
+ - lib/alpha_omega/deploy/scm.rb
155
154
  - lib/alpha_omega/deploy/local_dependency.rb
156
155
  - lib/alpha_omega/deploy/remote_dependency.rb
157
- - lib/alpha_omega/utils.rb
158
156
  - bin/alpha_omega
159
- has_rdoc: true
160
157
  homepage: https://github.com/HeSYINUvSBZfxqA/alpha_omega
161
158
  licenses: []
162
159
 
@@ -186,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
183
  requirements: []
187
184
 
188
185
  rubyforge_project:
189
- rubygems_version: 1.5.3
186
+ rubygems_version: 1.8.10
190
187
  signing_key:
191
188
  specification_version: 3
192
189
  summary: alpha_omega capistrano recipes
data/libexec/cook DELETED
@@ -1,3 +0,0 @@
1
- #!/bin/bash -e
2
-
3
- exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"