alpha_omega 0.0.64 → 0.0.65

Sign up to get free protection for your applications and to get access to all the features.
data/bin/alpha_omega CHANGED
@@ -1,7 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- unless ARGV.length > 0
4
- ARGV << "deploy"
5
- end
6
-
7
3
  system(File.expand_path(File.join(File.dirname(__FILE__),"..","libexec",ARGV[0])),*ARGV[1..-1])
@@ -1,3 +1,3 @@
1
1
  module AlphaOmega
2
- Version = "0.0.64"
2
+ Version = "0.0.65"
3
3
  end
data/libexec/check ADDED
@@ -0,0 +1,3 @@
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 "$@"
data/libexec/compare CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- bundle check || { bundle --local --path vendor/bundle && bundle check; }
4
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
3
+ exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
data/libexec/cook ADDED
@@ -0,0 +1,3 @@
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 "$@"
data/libexec/deploy CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- bundle check || { bundle --local --path vendor/bundle && bundle check; }
4
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
3
+ exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
data/libexec/hosts CHANGED
@@ -3,6 +3,5 @@
3
3
  export LOCAL_ONLY=true
4
4
 
5
5
  {
6
- bundle check || { bundle --local --path vendor/bundle && bundle check; }
7
- bundle exec cap $(for a in "$@"; do echo $a.echo; done)
6
+ cap $(for a in "$@"; do echo $a.echo; done)
8
7
  } 2>&1 | grep eea914aaa8dde6fdae29242b1084a2b0415eefaf | awk '{print $NF}' | sort -u
data/libexec/patch CHANGED
@@ -1,5 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
5
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile -m 0 -c git=1,patch=1
3
+ exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
data/libexec/rollback CHANGED
@@ -1,5 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
5
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile -m 0 -c git=1,rollback=1
3
+ exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
data/libexec/shell CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- bundle check || { bundle --local --path vendor/bundle && bundle check; }
4
- exec bundle exec cap ssh_gateway "$@" shell
3
+ exec cap ssh_gateway "$@" shell
data/libexec/stage CHANGED
@@ -1,5 +1,3 @@
1
1
  #!/bin/bash -e
2
2
 
3
- which figlet 2>&- > /dev/null
4
- bundle check || bundle --local --path vendor/bundle
5
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile -m 0 -c git=1,stage=1
3
+ exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"
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: 159
4
+ hash: 157
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 64
10
- version: 0.0.64
9
+ - 65
10
+ version: 0.0.65
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Nghiem
@@ -119,7 +119,8 @@ files:
119
119
  - libexec/compare
120
120
  - libexec/rollback
121
121
  - libexec/shell
122
- - libexec/major
122
+ - libexec/cook
123
+ - libexec/check
123
124
  - libexec/patch
124
125
  - libexec/deploy
125
126
  - libexec/hosts
data/libexec/major DELETED
@@ -1,4 +0,0 @@
1
- #!/bin/bash -e
2
-
3
- bundle check || { bundle --local --path vendor/bundle && bundle check; }
4
- exec bundle exec foreman start -f $(dirname $(dirname $0))/Procfile.rb -m 0 -c git=0,$(basename $0)=1 --args ssh_gateway "$@"