alpha_omega 1.2.1 → 1.3.1
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/VERSION +1 -1
- data/bin/{alpha_omega → ao} +1 -1
- data/lib/alpha_omega/config/deploy.rb +4 -0
- data/lib/alpha_omega/config/deploy_challenge.rb +19 -0
- data/lib/alpha_omega/config/deploy_localhost.rb +29 -0
- data/lib/alpha_omega/config/deploy_notify.rb +85 -0
- data/lib/alpha_omega/config/deploy_ssh.rb +11 -0
- data/lib/alpha_omega/deploy.rb +14 -40
- data/lib/alpha_omega/utils.rb +22 -18
- data/libexec/_ao +194 -0
- data/{sbin → libexec}/_bump +0 -0
- data/{sbin → libexec}/_jason +19 -27
- data/{sbin → libexec}/_log4sh +0 -0
- data/{sbin → libexec}/_meat +19 -27
- data/{sbin → libexec}/_prime +1 -1
- data/{sbin → libexec}/_shflags +0 -0
- data/{sbin → libexec}/_shunit +0 -0
- data/{sbin → libexec}/_sub +18 -3
- data/{sbin → libexec}/_treadstone +1 -1
- data/{sbin → libexec}/_versions +0 -0
- data/{sbin/ao → libexec/aoh} +3 -3
- data/libexec/aoh-activate +22 -0
- data/libexec/aoh-check +23 -0
- data/libexec/aoh-compare +23 -0
- data/libexec/aoh-debug +23 -0
- data/libexec/aoh-deploy +22 -0
- data/libexec/aoh-dist +23 -0
- data/libexec/{ao-dna → aoh-dna} +10 -12
- data/libexec/aoh-hosts +24 -0
- data/libexec/{ao-lock → aoh-lock} +11 -11
- data/libexec/aoh-migrate +23 -0
- data/libexec/aoh-proxy +74 -0
- data/libexec/aoh-release +23 -0
- data/libexec/aoh-remote +37 -0
- data/libexec/aoh-restart +23 -0
- data/libexec/aoh-rollback +23 -0
- data/libexec/aoh-shell +23 -0
- data/libexec/aoh-stage +22 -0
- data/libexec/aoh-task +24 -0
- data/libexec/{ao-unlock → aoh-unlock} +11 -11
- data/libexec/build +1 -1
- data/libexec/build-gem +1 -1
- data/libexec/bump +1 -1
- data/libexec/edit-gem +1 -1
- data/libexec/local-helper +24 -0
- data/libexec/publish +1 -1
- data/libexec/publish-gem +1 -1
- data/libexec/stub-prepare +3 -7
- data/{libexec/ao-shell → sbin/activate} +4 -7
- data/{libexec/ao → sbin/aoh} +3 -3
- data/{libexec/ao-deploy → sbin/aoh-stub} +4 -7
- data/sbin/bump +15 -0
- data/sbin/check +20 -0
- data/sbin/compare +20 -0
- data/sbin/debug +20 -0
- data/sbin/deploy +20 -0
- data/sbin/dist +20 -0
- data/sbin/dna +20 -0
- data/sbin/hosts +20 -0
- data/sbin/local-helper +15 -0
- data/sbin/lock +20 -0
- data/sbin/migrate +20 -0
- data/sbin/proxy +20 -0
- data/sbin/release +20 -0
- data/sbin/remote +20 -0
- data/sbin/remote-helper +81 -0
- data/sbin/restart +20 -0
- data/sbin/rollback +20 -0
- data/sbin/shell +20 -0
- data/sbin/stage +20 -0
- data/sbin/stub +3 -3
- data/sbin/task +20 -0
- data/sbin/unlock +20 -0
- metadata +157 -120
- data/libexec/ao-activate +0 -23
- data/libexec/ao-build +0 -23
- data/libexec/ao-check +0 -23
- data/libexec/ao-compare +0 -23
- data/libexec/ao-cook +0 -23
- data/libexec/ao-debug +0 -28
- data/libexec/ao-dist +0 -23
- data/libexec/ao-hosts +0 -28
- data/libexec/ao-migrate +0 -23
- data/libexec/ao-plan +0 -23
- data/libexec/ao-release +0 -23
- data/libexec/ao-restart +0 -23
- data/libexec/ao-rollback +0 -23
- data/libexec/ao-stage +0 -23
- data/libexec/ao-task +0 -24
data/sbin/remote-helper
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ remote-helper -- remotely builds a workarea
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/
|
8
|
+
#/ remote-heper deployer git_url git_spec deploy_comand deploy_args
|
9
|
+
#/
|
10
|
+
|
11
|
+
set -e
|
12
|
+
|
13
|
+
# figure out the project root under which bin, lib live
|
14
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
15
|
+
|
16
|
+
fl_debug=
|
17
|
+
|
18
|
+
function crumb {
|
19
|
+
if [[ -n "$fl_debug" ]]; then
|
20
|
+
echo "$(date) $@" 1>&2
|
21
|
+
fi
|
22
|
+
}
|
23
|
+
|
24
|
+
# entry point
|
25
|
+
function main {
|
26
|
+
nm_deployer=$1; shift
|
27
|
+
git_url=$1; shift
|
28
|
+
git_spec=$1; shift
|
29
|
+
cmd_deploy=$1; shift
|
30
|
+
|
31
|
+
if [[ "$cmd_deploy" = "debug" ]]; then
|
32
|
+
fl_debug=1
|
33
|
+
fi
|
34
|
+
|
35
|
+
crumb "start remote-helper with args: $nm_deployer, $git_url, $git_spec, $cmd_deploy"
|
36
|
+
crumb "additional args: $@"
|
37
|
+
|
38
|
+
git_branch="${git_spec%%:*}"
|
39
|
+
git_sha="${git_spec##*:}"
|
40
|
+
|
41
|
+
crumb "derive: git_branch = $git_branch"
|
42
|
+
crumb "derive: git_sha = $git_sha"
|
43
|
+
|
44
|
+
mkdir -p "$HOME/.deploy/$nm_deployer"
|
45
|
+
cd "$HOME/.deploy/$nm_deployer"
|
46
|
+
|
47
|
+
nm_project=$(basename $git_url .git)
|
48
|
+
if [[ ! -d $nm_project ]]; then
|
49
|
+
crumb "git clone $git_url"
|
50
|
+
git clone -q $git_url
|
51
|
+
fi
|
52
|
+
crumb "remote deploy on ${LOGNAME}@$(hostname) in $HOME/.deploy/$nm_deployer/$nm_project/"
|
53
|
+
|
54
|
+
cd $nm_project
|
55
|
+
git fetch -q
|
56
|
+
|
57
|
+
if [[ -z $git_branch || $git_branch = $git_sha ]]; then
|
58
|
+
crumb "git reset, checkout of $git_sha"
|
59
|
+
git reset -q --hard $git_sha
|
60
|
+
git checkout -q $git_sha
|
61
|
+
else
|
62
|
+
crumb "git checkout of $git_branch, reset of $git_sha"
|
63
|
+
git checkout -q --force $git_branch
|
64
|
+
git reset -q --hard $git_sha
|
65
|
+
fi
|
66
|
+
|
67
|
+
crumb "git submodule"
|
68
|
+
git submodule -q update --init --recursive
|
69
|
+
|
70
|
+
crumb "executing ao $cmd_deploy $@"
|
71
|
+
export _AO_DEPLOYER="$nm_deployer"
|
72
|
+
bundle check 2>&1 >/dev/null || { bundle install --quiet --local --path vendor/bundle || bundle check > /dev/null; }
|
73
|
+
bundle exec ao $cmd_deploy "$@"
|
74
|
+
crumb "end remote-helper"
|
75
|
+
}
|
76
|
+
|
77
|
+
# setup
|
78
|
+
unset cd # disable rvm's cd function to prevent prompts
|
79
|
+
|
80
|
+
# pass arguments to entry point
|
81
|
+
main "$@"
|
data/sbin/restart
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/rollback
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/shell
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/stage
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/stub
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
3
|
#/ NAME
|
4
|
-
#/
|
4
|
+
#/ stub -- symlink catchall to implement 37signals/sub interface
|
5
5
|
#/
|
6
6
|
#/ SYNOPSIS
|
7
|
-
#/
|
7
|
+
#/ ln -nfs stub bin/stubbed-command
|
8
8
|
|
9
9
|
# figure out the project root under which bin, lib live
|
10
10
|
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
11
|
|
12
12
|
# load a jason bourne library
|
13
|
-
source "$shome/
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
14
|
|
15
15
|
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/task
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
data/sbin/unlock
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ aoh-stub -- aliases bin/xxx to bin/aoh xxx
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ aoh-sub
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/libexec/_treadstone"
|
14
|
+
|
15
|
+
# entry point
|
16
|
+
function main {
|
17
|
+
exec "$shome/libexec/aoh" "$(basename "$0")" "$@"
|
18
|
+
}
|
19
|
+
|
20
|
+
require 'sub' "$BASH_SOURCE" "$@"
|
metadata
CHANGED
@@ -1,137 +1,151 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: alpha_omega
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 3
|
9
|
+
- 1
|
10
|
+
version: 1.3.1
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- David Nghiem
|
9
14
|
- Tom Bombadil
|
10
15
|
autorequire:
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
18
|
+
|
19
|
+
date: 2011-08-31 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
16
22
|
name: json
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
|
-
requirements:
|
20
|
-
- - ! '>='
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '0'
|
23
|
-
type: :runtime
|
24
23
|
prerelease: false
|
25
|
-
|
26
|
-
none: false
|
27
|
-
requirements:
|
28
|
-
- - ! '>='
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: '0'
|
31
|
-
- !ruby/object:Gem::Dependency
|
32
|
-
name: deep_merge
|
33
|
-
requirement: !ruby/object:Gem::Requirement
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
34
25
|
none: false
|
35
|
-
requirements:
|
36
|
-
- -
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
39
33
|
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: deep_merge
|
40
37
|
prerelease: false
|
41
|
-
|
42
|
-
none: false
|
43
|
-
requirements:
|
44
|
-
- - ! '>='
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: '0'
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: HeSYINUvSBZfxqA-capistrano
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
50
39
|
none: false
|
51
|
-
requirements:
|
52
|
-
- -
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 3
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
55
47
|
type: :runtime
|
48
|
+
version_requirements: *id002
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: HeSYINUvSBZfxqA-capistrano
|
56
51
|
prerelease: false
|
57
|
-
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
58
53
|
none: false
|
59
|
-
requirements:
|
60
|
-
- -
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
none: false
|
67
|
-
requirements:
|
68
|
-
- - ! '>='
|
69
|
-
- !ruby/object:Gem::Version
|
70
|
-
version: '0'
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
hash: 3
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
71
61
|
type: :runtime
|
62
|
+
version_requirements: *id003
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: HeSYINUvSBZfxqA-capistrano_colors
|
72
65
|
prerelease: false
|
73
|
-
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
74
67
|
none: false
|
75
|
-
requirements:
|
76
|
-
- -
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
none: false
|
83
|
-
requirements:
|
84
|
-
- - ! '>='
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version: '0'
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
hash: 3
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
87
75
|
type: :runtime
|
76
|
+
version_requirements: *id004
|
77
|
+
- !ruby/object:Gem::Dependency
|
78
|
+
name: HeSYINUvSBZfxqA-capistrano_log
|
88
79
|
prerelease: false
|
89
|
-
|
80
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
90
81
|
none: false
|
91
|
-
requirements:
|
92
|
-
- -
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
hash: 3
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
version: "0"
|
89
|
+
type: :runtime
|
90
|
+
version_requirements: *id005
|
95
91
|
description: Common reciples for persistent capistrano releases
|
96
|
-
email:
|
92
|
+
email:
|
97
93
|
- nghidav@gmail.com
|
98
94
|
- amanibhavam@destructuring.org
|
99
|
-
executables:
|
100
|
-
-
|
95
|
+
executables:
|
96
|
+
- ao
|
101
97
|
extensions: []
|
98
|
+
|
102
99
|
extra_rdoc_files: []
|
103
|
-
|
100
|
+
|
101
|
+
files:
|
104
102
|
- LICENSE
|
105
103
|
- VERSION
|
106
104
|
- README.mkd
|
107
|
-
- libexec/
|
108
|
-
- libexec/
|
109
|
-
- libexec/
|
110
|
-
- libexec/
|
111
|
-
- libexec/
|
112
|
-
- libexec/
|
113
|
-
- libexec/
|
114
|
-
- libexec/
|
115
|
-
- libexec/
|
116
|
-
- libexec/
|
117
|
-
- libexec/
|
118
|
-
- libexec/
|
119
|
-
- libexec/
|
120
|
-
- libexec/
|
121
|
-
- libexec/
|
122
|
-
- libexec/
|
123
|
-
- libexec/
|
124
|
-
- libexec/
|
125
|
-
- libexec/
|
126
|
-
- libexec/
|
127
|
-
- libexec/
|
105
|
+
- libexec/_ao
|
106
|
+
- libexec/_bump
|
107
|
+
- libexec/_jason
|
108
|
+
- libexec/_log4sh
|
109
|
+
- libexec/_meat
|
110
|
+
- libexec/_prime
|
111
|
+
- libexec/_shflags
|
112
|
+
- libexec/_shunit
|
113
|
+
- libexec/_sub
|
114
|
+
- libexec/_treadstone
|
115
|
+
- libexec/_versions
|
116
|
+
- libexec/aoh
|
117
|
+
- libexec/aoh-activate
|
118
|
+
- libexec/aoh-check
|
119
|
+
- libexec/aoh-compare
|
120
|
+
- libexec/aoh-debug
|
121
|
+
- libexec/aoh-deploy
|
122
|
+
- libexec/aoh-dist
|
123
|
+
- libexec/aoh-dna
|
124
|
+
- libexec/aoh-hosts
|
125
|
+
- libexec/aoh-lock
|
126
|
+
- libexec/aoh-migrate
|
127
|
+
- libexec/aoh-proxy
|
128
|
+
- libexec/aoh-release
|
129
|
+
- libexec/aoh-remote
|
130
|
+
- libexec/aoh-restart
|
131
|
+
- libexec/aoh-rollback
|
132
|
+
- libexec/aoh-shell
|
133
|
+
- libexec/aoh-stage
|
134
|
+
- libexec/aoh-task
|
135
|
+
- libexec/aoh-unlock
|
128
136
|
- libexec/build
|
129
137
|
- libexec/build-gem
|
130
138
|
- libexec/bump
|
131
139
|
- libexec/edit-gem
|
140
|
+
- libexec/local-helper
|
132
141
|
- libexec/publish
|
133
142
|
- libexec/publish-gem
|
134
143
|
- libexec/stub-prepare
|
144
|
+
- lib/alpha_omega/config/deploy.rb
|
145
|
+
- lib/alpha_omega/config/deploy_challenge.rb
|
146
|
+
- lib/alpha_omega/config/deploy_localhost.rb
|
147
|
+
- lib/alpha_omega/config/deploy_notify.rb
|
148
|
+
- lib/alpha_omega/config/deploy_ssh.rb
|
135
149
|
- lib/alpha_omega/deploy/dependencies.rb
|
136
150
|
- lib/alpha_omega/deploy/local_dependency.rb
|
137
151
|
- lib/alpha_omega/deploy/remote_dependency.rb
|
@@ -147,41 +161,64 @@ files:
|
|
147
161
|
- lib/alpha_omega/utils.rb
|
148
162
|
- lib/alpha_omega/version.rb
|
149
163
|
- lib/development.rb
|
150
|
-
- sbin/
|
151
|
-
- sbin/
|
152
|
-
- sbin/
|
153
|
-
- sbin/
|
154
|
-
- sbin/
|
155
|
-
- sbin/
|
156
|
-
- sbin/
|
157
|
-
- sbin/
|
158
|
-
- sbin/
|
159
|
-
- sbin/
|
160
|
-
- sbin/
|
164
|
+
- sbin/activate
|
165
|
+
- sbin/aoh
|
166
|
+
- sbin/aoh-stub
|
167
|
+
- sbin/bump
|
168
|
+
- sbin/check
|
169
|
+
- sbin/compare
|
170
|
+
- sbin/debug
|
171
|
+
- sbin/deploy
|
172
|
+
- sbin/dist
|
173
|
+
- sbin/dna
|
174
|
+
- sbin/hosts
|
175
|
+
- sbin/local-helper
|
176
|
+
- sbin/lock
|
177
|
+
- sbin/migrate
|
178
|
+
- sbin/proxy
|
179
|
+
- sbin/release
|
180
|
+
- sbin/remote
|
181
|
+
- sbin/remote-helper
|
182
|
+
- sbin/restart
|
183
|
+
- sbin/rollback
|
184
|
+
- sbin/shell
|
185
|
+
- sbin/stage
|
161
186
|
- sbin/stub
|
162
|
-
-
|
163
|
-
|
187
|
+
- sbin/task
|
188
|
+
- sbin/unlock
|
189
|
+
- bin/ao
|
190
|
+
homepage: https://github.com/destructuring/alpha_omega
|
164
191
|
licenses: []
|
192
|
+
|
165
193
|
post_install_message:
|
166
194
|
rdoc_options: []
|
167
|
-
|
195
|
+
|
196
|
+
require_paths:
|
168
197
|
- lib
|
169
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
198
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
170
199
|
none: false
|
171
|
-
requirements:
|
172
|
-
- -
|
173
|
-
- !ruby/object:Gem::Version
|
174
|
-
|
175
|
-
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
hash: 3
|
204
|
+
segments:
|
205
|
+
- 0
|
206
|
+
version: "0"
|
207
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
208
|
none: false
|
177
|
-
requirements:
|
178
|
-
- -
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
|
209
|
+
requirements:
|
210
|
+
- - ">="
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
hash: 3
|
213
|
+
segments:
|
214
|
+
- 0
|
215
|
+
version: "0"
|
181
216
|
requirements: []
|
217
|
+
|
182
218
|
rubyforge_project:
|
183
219
|
rubygems_version: 1.8.24
|
184
220
|
signing_key:
|
185
221
|
specification_version: 3
|
186
222
|
summary: alpha_omega capistrano recipes
|
187
223
|
test_files: []
|
224
|
+
|