alpha_omega 0.0.16 → 0.0.18

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/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
1
  source :rubygems
2
2
 
3
3
  gemspec
4
+ gem "HeSYINUvSBZfxqA-capistrano", :require => "capistrano"
data/Gemfile.lock CHANGED
@@ -1,28 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- alpha_omega (0.0.16)
4
+ alpha_omega (0.0.17)
5
+ HeSYINUvSBZfxqA-capistrano
6
+ HeSYINUvSBZfxqA-capistrano_colors
7
+ HeSYINUvSBZfxqA-capistrano_log
5
8
  HeSYINUvSBZfxqA-foreman
6
- capistrano (= 2.5.21)
7
- capistrano-log_with_awesome
8
- capistrano_colors
9
9
  grit
10
10
 
11
11
  GEM
12
12
  remote: http://rubygems.org/
13
13
  specs:
14
- HeSYINUvSBZfxqA-foreman (0.20.0.4)
15
- term-ansicolor (~> 1.0.5)
16
- thor (>= 0.13.6)
17
- capistrano (2.5.21)
14
+ HeSYINUvSBZfxqA-capistrano (2.5.21)
18
15
  highline
19
16
  net-scp (>= 1.0.0)
20
17
  net-sftp (>= 2.0.0)
21
18
  net-ssh (>= 2.0.14)
22
19
  net-ssh-gateway (>= 1.0.0)
23
- capistrano-log_with_awesome (0.0.2)
24
- capistrano (>= 2.5.14)
25
- capistrano_colors (0.5.4)
20
+ HeSYINUvSBZfxqA-capistrano_colors (0.5.5)
21
+ HeSYINUvSBZfxqA-capistrano_log (0.0.2)
22
+ HeSYINUvSBZfxqA-capistrano (>= 2.5.14)
23
+ HeSYINUvSBZfxqA-foreman (0.20.0.4)
24
+ term-ansicolor (~> 1.0.5)
25
+ thor (>= 0.13.6)
26
26
  diff-lcs (1.1.3)
27
27
  grit (2.4.1)
28
28
  diff-lcs (~> 1.1)
@@ -43,4 +43,5 @@ PLATFORMS
43
43
  ruby
44
44
 
45
45
  DEPENDENCIES
46
+ HeSYINUvSBZfxqA-capistrano
46
47
  alpha_omega!
data/Procfile.rb CHANGED
@@ -1,8 +1,11 @@
1
1
  <<HERE
2
2
  git: git daemon --reuseaddr --base-path=. --export-all --verbose
3
- deploy: bundle exec cap deploy
4
- major: bundle exec cap deploy
5
- patch: bundle exec cap deploy
6
- rollback: bundle exec cap deploy:rollback
7
- stage: bundle exec cap deploy:update_code
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
8
10
  HERE
11
+
data/alpha_omega.gemspec CHANGED
@@ -21,9 +21,9 @@ Gem::Specification.new do |s|
21
21
  "README.mkd"
22
22
  ]
23
23
 
24
- s.add_runtime_dependency(%q<capistrano>, ["2.5.21"])
25
- s.add_runtime_dependency(%q<capistrano_colors>)
26
- s.add_runtime_dependency(%q<capistrano-log_with_awesome>)
27
24
  s.add_runtime_dependency(%q<grit>)
28
25
  s.add_runtime_dependency(%q<HeSYINUvSBZfxqA-foreman>)
26
+ s.add_runtime_dependency(%q<HeSYINUvSBZfxqA-capistrano>)
27
+ s.add_runtime_dependency(%q<HeSYINUvSBZfxqA-capistrano_colors>)
28
+ s.add_runtime_dependency(%q<HeSYINUvSBZfxqA-capistrano_log>)
29
29
  end
data/libexec/compare ADDED
@@ -0,0 +1,9 @@
1
+ #!/bin/bash -e
2
+
3
+ which figlet 2>&- > /dev/null
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
+ if [[ -z $1 ]]; then
6
+ exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
+ else
8
+ exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1 --args "$@"
9
+ fi
data/libexec/deploy CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash -e
2
2
 
3
3
  which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
5
  if [[ -z $1 ]]; then
6
6
  exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
7
  else
data/libexec/major CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash -e
2
2
 
3
3
  which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
5
  if [[ -z $1 ]]; then
6
6
  exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
7
  else
data/libexec/patch CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash -e
2
2
 
3
3
  which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
5
  if [[ -z $1 ]]; then
6
6
  exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
7
  else
data/libexec/rollback CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash -e
2
2
 
3
3
  which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
5
  if [[ -z $1 ]]; then
6
6
  exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
7
  else
data/libexec/shell ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/bash -e
2
+
3
+ which figlet 2>&- > /dev/null
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
+ exec bundle exec cap "$@" shell
data/libexec/stage CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash -e
2
2
 
3
3
  which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
4
+ bundle check || { bundle --local --path vendor/bundle && bundle check; }
5
5
  if [[ -z $1 ]]; then
6
6
  exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=1,$(basename $0)=1
7
7
  else
@@ -1,3 +1,3 @@
1
1
  module AlphaOmega
2
- Version = "0.0.16"
2
+ Version = "0.0.18"
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: 63
4
+ hash: 59
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 16
10
- version: 0.0.16
9
+ - 18
10
+ version: 0.0.18
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Nghiem
@@ -20,23 +20,23 @@ date: 2011-08-31 00:00:00 +00:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
- version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ name: grit
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
24
26
  none: false
25
27
  requirements:
26
- - - "="
28
+ - - ">="
27
29
  - !ruby/object:Gem::Version
28
- hash: 49
30
+ hash: 3
29
31
  segments:
30
- - 2
31
- - 5
32
- - 21
33
- version: 2.5.21
34
- prerelease: false
32
+ - 0
33
+ version: "0"
35
34
  type: :runtime
36
- requirement: *id001
37
- name: capistrano
35
+ version_requirements: *id001
38
36
  - !ruby/object:Gem::Dependency
39
- version_requirements: &id002 !ruby/object:Gem::Requirement
37
+ name: HeSYINUvSBZfxqA-foreman
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ">="
@@ -45,12 +45,12 @@ dependencies:
45
45
  segments:
46
46
  - 0
47
47
  version: "0"
48
- prerelease: false
49
48
  type: :runtime
50
- requirement: *id002
51
- name: capistrano_colors
49
+ version_requirements: *id002
52
50
  - !ruby/object:Gem::Dependency
53
- version_requirements: &id003 !ruby/object:Gem::Requirement
51
+ name: HeSYINUvSBZfxqA-capistrano
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
54
  none: false
55
55
  requirements:
56
56
  - - ">="
@@ -59,12 +59,12 @@ dependencies:
59
59
  segments:
60
60
  - 0
61
61
  version: "0"
62
- prerelease: false
63
62
  type: :runtime
64
- requirement: *id003
65
- name: capistrano-log_with_awesome
63
+ version_requirements: *id003
66
64
  - !ruby/object:Gem::Dependency
67
- version_requirements: &id004 !ruby/object:Gem::Requirement
65
+ name: HeSYINUvSBZfxqA-capistrano_colors
66
+ prerelease: false
67
+ requirement: &id004 !ruby/object:Gem::Requirement
68
68
  none: false
69
69
  requirements:
70
70
  - - ">="
@@ -73,12 +73,12 @@ dependencies:
73
73
  segments:
74
74
  - 0
75
75
  version: "0"
76
- prerelease: false
77
76
  type: :runtime
78
- requirement: *id004
79
- name: grit
77
+ version_requirements: *id004
80
78
  - !ruby/object:Gem::Dependency
81
- version_requirements: &id005 !ruby/object:Gem::Requirement
79
+ name: HeSYINUvSBZfxqA-capistrano_log
80
+ prerelease: false
81
+ requirement: &id005 !ruby/object:Gem::Requirement
82
82
  none: false
83
83
  requirements:
84
84
  - - ">="
@@ -87,10 +87,8 @@ dependencies:
87
87
  segments:
88
88
  - 0
89
89
  version: "0"
90
- prerelease: false
91
90
  type: :runtime
92
- requirement: *id005
93
- name: HeSYINUvSBZfxqA-foreman
91
+ version_requirements: *id005
94
92
  description: Common reciples for persistent capistrano releases
95
93
  email:
96
94
  - nghidav@gmail.com
@@ -111,10 +109,12 @@ files:
111
109
  - README.mkd
112
110
  - alpha_omega.gemspec
113
111
  - bin/deploy
112
+ - libexec/compare
114
113
  - libexec/deploy
115
114
  - libexec/major
116
115
  - libexec/patch
117
116
  - libexec/rollback
117
+ - libexec/shell
118
118
  - libexec/stage
119
119
  - recipes/alpha_omega/deploy.rb
120
120
  - recipes/alpha_omega/deploy/dependencies.rb
@@ -129,10 +129,10 @@ files:
129
129
  - recipes/alpha_omega/deploy/strategy/remote.rb
130
130
  - recipes/alpha_omega/deploy/templates/maintenance.rhtml
131
131
  - recipes/alpha_omega/version.rb
132
+ - vendor/cache/HeSYINUvSBZfxqA-capistrano-2.5.21.gem
133
+ - vendor/cache/HeSYINUvSBZfxqA-capistrano_colors-0.5.5.gem
134
+ - vendor/cache/HeSYINUvSBZfxqA-capistrano_log-0.0.2.gem
132
135
  - vendor/cache/HeSYINUvSBZfxqA-foreman-0.20.0.4.gem
133
- - vendor/cache/capistrano-2.5.21.gem
134
- - vendor/cache/capistrano-log_with_awesome-0.0.2.gem
135
- - vendor/cache/capistrano_colors-0.5.4.gem
136
136
  - vendor/cache/diff-lcs-1.1.3.gem
137
137
  - vendor/cache/grit-2.4.1.gem
138
138
  - vendor/cache/highline-1.6.2.gem
Binary file