alpha_omega 0.0.98 → 0.0.99

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/VERSION +1 -0
  2. metadata +26 -24
  3. data/Procfile.rb +0 -11
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.99
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: 219
4
+ hash: 217
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 98
10
- version: 0.0.98
9
+ - 99
10
+ version: 0.0.99
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 Z
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,38 +117,39 @@ extra_rdoc_files: []
116
117
 
117
118
  files:
118
119
  - LICENSE
120
+ - VERSION
119
121
  - README.mkd
120
- - Procfile.rb
122
+ - libexec/proxy
121
123
  - libexec/build
122
- - libexec/check
124
+ - libexec/restart
125
+ - libexec/stage
126
+ - libexec/rollback
123
127
  - libexec/compare
124
- - libexec/config
128
+ - libexec/shell
125
129
  - libexec/deploy
126
- - libexec/dist
130
+ - libexec/config
127
131
  - libexec/dna
128
- - libexec/hosts
132
+ - libexec/check
129
133
  - libexec/invoke
130
- - libexec/proxy
134
+ - libexec/hosts
131
135
  - libexec/release
132
- - libexec/restart
133
- - libexec/rollback
134
- - libexec/shell
135
- - libexec/stage
136
- - lib/alpha_omega/deploy/dependencies.rb
136
+ - libexec/dist
137
+ - lib/alpha_omega/utils.rb
138
+ - lib/alpha_omega/deploy.rb
139
+ - lib/alpha_omega/version.rb
137
140
  - lib/alpha_omega/deploy/local_dependency.rb
138
- - lib/alpha_omega/deploy/remote_dependency.rb
139
- - lib/alpha_omega/deploy/scm/base.rb
140
- - lib/alpha_omega/deploy/scm/git.rb
141
- - lib/alpha_omega/deploy/scm.rb
142
141
  - lib/alpha_omega/deploy/strategy/base.rb
143
142
  - lib/alpha_omega/deploy/strategy/checkout.rb
144
143
  - lib/alpha_omega/deploy/strategy/remote.rb
145
- - lib/alpha_omega/deploy/strategy.rb
144
+ - lib/alpha_omega/deploy/scm.rb
146
145
  - lib/alpha_omega/deploy/templates/maintenance.rhtml
147
- - lib/alpha_omega/deploy.rb
148
- - lib/alpha_omega/utils.rb
149
- - lib/alpha_omega/version.rb
146
+ - lib/alpha_omega/deploy/strategy.rb
147
+ - lib/alpha_omega/deploy/scm/base.rb
148
+ - lib/alpha_omega/deploy/scm/git.rb
149
+ - lib/alpha_omega/deploy/dependencies.rb
150
+ - lib/alpha_omega/deploy/remote_dependency.rb
150
151
  - bin/alpha_omega
152
+ has_rdoc: true
151
153
  homepage: https://github.com/HeSYINUvSBZfxqA/alpha_omega
152
154
  licenses: []
153
155
 
@@ -177,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
179
  requirements: []
178
180
 
179
181
  rubyforge_project:
180
- rubygems_version: 1.8.21
182
+ rubygems_version: 1.5.3
181
183
  signing_key:
182
184
  specification_version: 3
183
185
  summary: alpha_omega capistrano recipes
data/Procfile.rb DELETED
@@ -1,11 +0,0 @@
1
- <<HERE
2
- git: git daemon --reuseaddr --base-path=. --export-all --verbose
3
- deploy: bundle exec cap #{(options[:args]||[]).join(" ")} deploy
4
- major: bundle exec cap #{(options[:args]||[]).join(" ")} deploy
5
- patch: bundle exec cap #{(options[:args]||[]).join(" ")} deploy
6
- rollback: bundle exec cap #{(options[:args]||[]).join(" ")} deploy:rollback
7
- stage: bundle exec cap #{(options[:args]||[]).join(" ")} deploy:update_code
8
- compare: bundle exec cap #{(options[:args]||[]).join(" ")} deploy:compare
9
- shell: bundle exec cap #{(options[:args]||[]).join(" ")} shell
10
- HERE
11
-