mbailey-capistrano 2.5.5
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/CHANGELOG.rdoc +761 -0
- data/Manifest +104 -0
- data/README.rdoc +66 -0
- data/Rakefile +34 -0
- data/bin/cap +4 -0
- data/bin/capify +78 -0
- data/examples/sample.rb +14 -0
- data/lib/capistrano/callback.rb +45 -0
- data/lib/capistrano/cli/execute.rb +84 -0
- data/lib/capistrano/cli/help.rb +125 -0
- data/lib/capistrano/cli/help.txt +75 -0
- data/lib/capistrano/cli/options.rb +224 -0
- data/lib/capistrano/cli/ui.rb +40 -0
- data/lib/capistrano/cli.rb +47 -0
- data/lib/capistrano/command.rb +283 -0
- data/lib/capistrano/configuration/actions/file_transfer.rb +47 -0
- data/lib/capistrano/configuration/actions/inspect.rb +46 -0
- data/lib/capistrano/configuration/actions/invocation.rb +293 -0
- data/lib/capistrano/configuration/callbacks.rb +148 -0
- data/lib/capistrano/configuration/connections.rb +200 -0
- data/lib/capistrano/configuration/execution.rb +132 -0
- data/lib/capistrano/configuration/loading.rb +197 -0
- data/lib/capistrano/configuration/namespaces.rb +197 -0
- data/lib/capistrano/configuration/roles.rb +73 -0
- data/lib/capistrano/configuration/servers.rb +85 -0
- data/lib/capistrano/configuration/variables.rb +127 -0
- data/lib/capistrano/configuration.rb +43 -0
- data/lib/capistrano/errors.rb +15 -0
- data/lib/capistrano/extensions.rb +57 -0
- data/lib/capistrano/logger.rb +59 -0
- data/lib/capistrano/processable.rb +53 -0
- data/lib/capistrano/recipes/compat.rb +32 -0
- data/lib/capistrano/recipes/deploy/dependencies.rb +44 -0
- data/lib/capistrano/recipes/deploy/local_dependency.rb +54 -0
- data/lib/capistrano/recipes/deploy/remote_dependency.rb +105 -0
- data/lib/capistrano/recipes/deploy/scm/accurev.rb +169 -0
- data/lib/capistrano/recipes/deploy/scm/base.rb +196 -0
- data/lib/capistrano/recipes/deploy/scm/bzr.rb +83 -0
- data/lib/capistrano/recipes/deploy/scm/cvs.rb +152 -0
- data/lib/capistrano/recipes/deploy/scm/darcs.rb +85 -0
- data/lib/capistrano/recipes/deploy/scm/git.rb +271 -0
- data/lib/capistrano/recipes/deploy/scm/mercurial.rb +137 -0
- data/lib/capistrano/recipes/deploy/scm/none.rb +44 -0
- data/lib/capistrano/recipes/deploy/scm/perforce.rb +133 -0
- data/lib/capistrano/recipes/deploy/scm/subversion.rb +121 -0
- data/lib/capistrano/recipes/deploy/scm.rb +19 -0
- data/lib/capistrano/recipes/deploy/strategy/base.rb +79 -0
- data/lib/capistrano/recipes/deploy/strategy/checkout.rb +20 -0
- data/lib/capistrano/recipes/deploy/strategy/copy.rb +210 -0
- data/lib/capistrano/recipes/deploy/strategy/export.rb +20 -0
- data/lib/capistrano/recipes/deploy/strategy/remote.rb +52 -0
- data/lib/capistrano/recipes/deploy/strategy/remote_cache.rb +56 -0
- data/lib/capistrano/recipes/deploy/strategy.rb +19 -0
- data/lib/capistrano/recipes/deploy/templates/maintenance.rhtml +53 -0
- data/lib/capistrano/recipes/deploy.rb +562 -0
- data/lib/capistrano/recipes/standard.rb +37 -0
- data/lib/capistrano/recipes/templates/maintenance.rhtml +53 -0
- data/lib/capistrano/recipes/upgrade.rb +33 -0
- data/lib/capistrano/role.rb +102 -0
- data/lib/capistrano/server_definition.rb +56 -0
- data/lib/capistrano/shell.rb +260 -0
- data/lib/capistrano/ssh.rb +99 -0
- data/lib/capistrano/task_definition.rb +70 -0
- data/lib/capistrano/transfer.rb +216 -0
- data/lib/capistrano/version.rb +18 -0
- data/lib/capistrano.rb +2 -0
- data/setup.rb +1346 -0
- data/test/cli/execute_test.rb +132 -0
- data/test/cli/help_test.rb +165 -0
- data/test/cli/options_test.rb +317 -0
- data/test/cli/ui_test.rb +28 -0
- data/test/cli_test.rb +17 -0
- data/test/command_test.rb +286 -0
- data/test/configuration/actions/file_transfer_test.rb +61 -0
- data/test/configuration/actions/inspect_test.rb +65 -0
- data/test/configuration/actions/invocation_test.rb +224 -0
- data/test/configuration/callbacks_test.rb +220 -0
- data/test/configuration/connections_test.rb +349 -0
- data/test/configuration/execution_test.rb +175 -0
- data/test/configuration/loading_test.rb +132 -0
- data/test/configuration/namespace_dsl_test.rb +311 -0
- data/test/configuration/roles_test.rb +144 -0
- data/test/configuration/servers_test.rb +121 -0
- data/test/configuration/variables_test.rb +184 -0
- data/test/configuration_test.rb +88 -0
- data/test/deploy/local_dependency_test.rb +76 -0
- data/test/deploy/remote_dependency_test.rb +114 -0
- data/test/deploy/scm/accurev_test.rb +23 -0
- data/test/deploy/scm/base_test.rb +55 -0
- data/test/deploy/scm/git_test.rb +167 -0
- data/test/deploy/scm/mercurial_test.rb +129 -0
- data/test/deploy/strategy/copy_test.rb +258 -0
- data/test/extensions_test.rb +69 -0
- data/test/fixtures/cli_integration.rb +5 -0
- data/test/fixtures/config.rb +5 -0
- data/test/fixtures/custom.rb +3 -0
- data/test/logger_test.rb +123 -0
- data/test/role_test.rb +11 -0
- data/test/server_definition_test.rb +121 -0
- data/test/shell_test.rb +90 -0
- data/test/ssh_test.rb +104 -0
- data/test/task_definition_test.rb +101 -0
- data/test/transfer_test.rb +160 -0
- data/test/utils.rb +38 -0
- metadata +205 -0
metadata
ADDED
@@ -0,0 +1,205 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mbailey-capistrano
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.5.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jamis Buck
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-02-13 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: net-ssh
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.0.10
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: net-sftp
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.0.0
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: net-scp
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.0.0
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: net-ssh-gateway
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.0.0
|
54
|
+
version:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: highline
|
57
|
+
type: :runtime
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
version:
|
65
|
+
description:
|
66
|
+
email: mike@bailey.net.au
|
67
|
+
executables: []
|
68
|
+
|
69
|
+
extensions: []
|
70
|
+
|
71
|
+
extra_rdoc_files: []
|
72
|
+
|
73
|
+
files:
|
74
|
+
- bin/cap
|
75
|
+
- bin/capify
|
76
|
+
- CHANGELOG.rdoc
|
77
|
+
- examples/sample.rb
|
78
|
+
- lib/capistrano/callback.rb
|
79
|
+
- lib/capistrano/cli/execute.rb
|
80
|
+
- lib/capistrano/cli/help.rb
|
81
|
+
- lib/capistrano/cli/help.txt
|
82
|
+
- lib/capistrano/cli/options.rb
|
83
|
+
- lib/capistrano/cli/ui.rb
|
84
|
+
- lib/capistrano/cli.rb
|
85
|
+
- lib/capistrano/command.rb
|
86
|
+
- lib/capistrano/configuration/actions/file_transfer.rb
|
87
|
+
- lib/capistrano/configuration/actions/inspect.rb
|
88
|
+
- lib/capistrano/configuration/actions/invocation.rb
|
89
|
+
- lib/capistrano/configuration/callbacks.rb
|
90
|
+
- lib/capistrano/configuration/connections.rb
|
91
|
+
- lib/capistrano/configuration/execution.rb
|
92
|
+
- lib/capistrano/configuration/loading.rb
|
93
|
+
- lib/capistrano/configuration/namespaces.rb
|
94
|
+
- lib/capistrano/configuration/roles.rb
|
95
|
+
- lib/capistrano/configuration/servers.rb
|
96
|
+
- lib/capistrano/configuration/variables.rb
|
97
|
+
- lib/capistrano/configuration.rb
|
98
|
+
- lib/capistrano/errors.rb
|
99
|
+
- lib/capistrano/extensions.rb
|
100
|
+
- lib/capistrano/logger.rb
|
101
|
+
- lib/capistrano/processable.rb
|
102
|
+
- lib/capistrano/recipes/compat.rb
|
103
|
+
- lib/capistrano/recipes/deploy/dependencies.rb
|
104
|
+
- lib/capistrano/recipes/deploy/local_dependency.rb
|
105
|
+
- lib/capistrano/recipes/deploy/remote_dependency.rb
|
106
|
+
- lib/capistrano/recipes/deploy/scm/accurev.rb
|
107
|
+
- lib/capistrano/recipes/deploy/scm/base.rb
|
108
|
+
- lib/capistrano/recipes/deploy/scm/bzr.rb
|
109
|
+
- lib/capistrano/recipes/deploy/scm/cvs.rb
|
110
|
+
- lib/capistrano/recipes/deploy/scm/darcs.rb
|
111
|
+
- lib/capistrano/recipes/deploy/scm/git.rb
|
112
|
+
- lib/capistrano/recipes/deploy/scm/mercurial.rb
|
113
|
+
- lib/capistrano/recipes/deploy/scm/none.rb
|
114
|
+
- lib/capistrano/recipes/deploy/scm/perforce.rb
|
115
|
+
- lib/capistrano/recipes/deploy/scm/subversion.rb
|
116
|
+
- lib/capistrano/recipes/deploy/scm.rb
|
117
|
+
- lib/capistrano/recipes/deploy/strategy/base.rb
|
118
|
+
- lib/capistrano/recipes/deploy/strategy/checkout.rb
|
119
|
+
- lib/capistrano/recipes/deploy/strategy/copy.rb
|
120
|
+
- lib/capistrano/recipes/deploy/strategy/export.rb
|
121
|
+
- lib/capistrano/recipes/deploy/strategy/remote.rb
|
122
|
+
- lib/capistrano/recipes/deploy/strategy/remote_cache.rb
|
123
|
+
- lib/capistrano/recipes/deploy/strategy.rb
|
124
|
+
- lib/capistrano/recipes/deploy/templates/maintenance.rhtml
|
125
|
+
- lib/capistrano/recipes/deploy.rb
|
126
|
+
- lib/capistrano/recipes/standard.rb
|
127
|
+
- lib/capistrano/recipes/templates/maintenance.rhtml
|
128
|
+
- lib/capistrano/recipes/upgrade.rb
|
129
|
+
- lib/capistrano/role.rb
|
130
|
+
- lib/capistrano/server_definition.rb
|
131
|
+
- lib/capistrano/shell.rb
|
132
|
+
- lib/capistrano/ssh.rb
|
133
|
+
- lib/capistrano/task_definition.rb
|
134
|
+
- lib/capistrano/transfer.rb
|
135
|
+
- lib/capistrano/version.rb
|
136
|
+
- lib/capistrano.rb
|
137
|
+
- Rakefile
|
138
|
+
- README.rdoc
|
139
|
+
- setup.rb
|
140
|
+
- test/cli/execute_test.rb
|
141
|
+
- test/cli/help_test.rb
|
142
|
+
- test/cli/options_test.rb
|
143
|
+
- test/cli/ui_test.rb
|
144
|
+
- test/cli_test.rb
|
145
|
+
- test/command_test.rb
|
146
|
+
- test/configuration/actions/file_transfer_test.rb
|
147
|
+
- test/configuration/actions/inspect_test.rb
|
148
|
+
- test/configuration/actions/invocation_test.rb
|
149
|
+
- test/configuration/callbacks_test.rb
|
150
|
+
- test/configuration/connections_test.rb
|
151
|
+
- test/configuration/execution_test.rb
|
152
|
+
- test/configuration/loading_test.rb
|
153
|
+
- test/configuration/namespace_dsl_test.rb
|
154
|
+
- test/configuration/roles_test.rb
|
155
|
+
- test/configuration/servers_test.rb
|
156
|
+
- test/configuration/variables_test.rb
|
157
|
+
- test/configuration_test.rb
|
158
|
+
- test/deploy/local_dependency_test.rb
|
159
|
+
- test/deploy/remote_dependency_test.rb
|
160
|
+
- test/deploy/scm/accurev_test.rb
|
161
|
+
- test/deploy/scm/base_test.rb
|
162
|
+
- test/deploy/scm/git_test.rb
|
163
|
+
- test/deploy/scm/mercurial_test.rb
|
164
|
+
- test/deploy/strategy/copy_test.rb
|
165
|
+
- test/extensions_test.rb
|
166
|
+
- test/fixtures/cli_integration.rb
|
167
|
+
- test/fixtures/config.rb
|
168
|
+
- test/fixtures/custom.rb
|
169
|
+
- test/logger_test.rb
|
170
|
+
- test/role_test.rb
|
171
|
+
- test/server_definition_test.rb
|
172
|
+
- test/shell_test.rb
|
173
|
+
- test/ssh_test.rb
|
174
|
+
- test/task_definition_test.rb
|
175
|
+
- test/transfer_test.rb
|
176
|
+
- test/utils.rb
|
177
|
+
- Manifest
|
178
|
+
has_rdoc: true
|
179
|
+
homepage: http://www.capify.org
|
180
|
+
post_install_message:
|
181
|
+
rdoc_options: []
|
182
|
+
|
183
|
+
require_paths:
|
184
|
+
- lib
|
185
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - ">="
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: "0"
|
190
|
+
version:
|
191
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: "0"
|
196
|
+
version:
|
197
|
+
requirements: []
|
198
|
+
|
199
|
+
rubyforge_project:
|
200
|
+
rubygems_version: 1.2.0
|
201
|
+
signing_key:
|
202
|
+
specification_version: 2
|
203
|
+
summary: Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.
|
204
|
+
test_files: []
|
205
|
+
|