capistrano 1.1.0 → 1.2.0
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 +241 -0
- data/MIT-LICENSE +20 -0
- data/README +35 -0
- data/THANKS +4 -0
- data/lib/capistrano/actor.rb +111 -24
- data/lib/capistrano/cli.rb +18 -9
- data/lib/capistrano/command.rb +8 -0
- data/lib/capistrano/configuration.rb +1 -1
- data/lib/capistrano/gateway.rb +29 -43
- data/lib/capistrano/recipes/standard.rb +38 -10
- data/lib/capistrano/scm/base.rb +1 -2
- data/lib/capistrano/scm/cvs.rb +5 -0
- data/lib/capistrano/scm/mercurial.rb +83 -0
- data/lib/capistrano/scm/subversion.rb +18 -18
- data/lib/capistrano/shell.rb +224 -0
- data/lib/capistrano/ssh.rb +2 -3
- data/lib/capistrano/version.rb +2 -2
- data/test/actor_test.rb +104 -5
- data/test/scm/cvs_test.rb +10 -0
- data/test/scm/subversion_test.rb +6 -6
- metadata +95 -79
metadata
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.
|
|
2
|
+
rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: capistrano
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.
|
|
7
|
-
date: 2006-
|
|
8
|
-
summary:
|
|
9
|
-
multiple remote machines, via SSH. The primary goal is to simplify and
|
|
10
|
-
automate the deployment of web applications."
|
|
6
|
+
version: 1.2.0
|
|
7
|
+
date: 2006-09-14 00:00:00 -06:00
|
|
8
|
+
summary: Capistrano is a framework and utility for executing commands in parallel on multiple remote machines, via SSH. The primary goal is to simplify and automate the deployment of web applications.
|
|
11
9
|
require_paths:
|
|
12
|
-
|
|
10
|
+
- lib
|
|
13
11
|
email: jamis@37signals.com
|
|
14
12
|
homepage: http://www.rubyonrails.org
|
|
15
13
|
rubyforge_project:
|
|
@@ -20,88 +18,106 @@ bindir: bin
|
|
|
20
18
|
has_rdoc: false
|
|
21
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
22
20
|
requirements:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
version: 0.0.0
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
27
24
|
version:
|
|
28
25
|
platform: ruby
|
|
29
26
|
signing_key:
|
|
30
27
|
cert_chain:
|
|
28
|
+
post_install_message:
|
|
31
29
|
authors:
|
|
32
|
-
|
|
30
|
+
- Jamis Buck
|
|
33
31
|
files:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
32
|
+
- bin/cap
|
|
33
|
+
- lib/capistrano
|
|
34
|
+
- lib/capistrano.rb
|
|
35
|
+
- lib/capistrano/actor.rb
|
|
36
|
+
- lib/capistrano/cli.rb
|
|
37
|
+
- lib/capistrano/command.rb
|
|
38
|
+
- lib/capistrano/configuration.rb
|
|
39
|
+
- lib/capistrano/extensions.rb
|
|
40
|
+
- lib/capistrano/gateway.rb
|
|
41
|
+
- lib/capistrano/generators
|
|
42
|
+
- lib/capistrano/logger.rb
|
|
43
|
+
- lib/capistrano/recipes
|
|
44
|
+
- lib/capistrano/scm
|
|
45
|
+
- lib/capistrano/shell.rb
|
|
46
|
+
- lib/capistrano/ssh.rb
|
|
47
|
+
- lib/capistrano/transfer.rb
|
|
48
|
+
- lib/capistrano/utils.rb
|
|
49
|
+
- lib/capistrano/version.rb
|
|
50
|
+
- lib/capistrano/generators/rails
|
|
51
|
+
- lib/capistrano/generators/rails/deployment
|
|
52
|
+
- lib/capistrano/generators/rails/loader.rb
|
|
53
|
+
- lib/capistrano/generators/rails/deployment/deployment_generator.rb
|
|
54
|
+
- lib/capistrano/generators/rails/deployment/templates
|
|
55
|
+
- lib/capistrano/generators/rails/deployment/templates/capistrano.rake
|
|
56
|
+
- lib/capistrano/generators/rails/deployment/templates/deploy.rb
|
|
57
|
+
- lib/capistrano/recipes/standard.rb
|
|
58
|
+
- lib/capistrano/recipes/templates
|
|
59
|
+
- lib/capistrano/recipes/templates/maintenance.rhtml
|
|
60
|
+
- lib/capistrano/scm/base.rb
|
|
61
|
+
- lib/capistrano/scm/baz.rb
|
|
62
|
+
- lib/capistrano/scm/bzr.rb
|
|
63
|
+
- lib/capistrano/scm/cvs.rb
|
|
64
|
+
- lib/capistrano/scm/darcs.rb
|
|
65
|
+
- lib/capistrano/scm/mercurial.rb
|
|
66
|
+
- lib/capistrano/scm/perforce.rb
|
|
67
|
+
- lib/capistrano/scm/subversion.rb
|
|
68
|
+
- examples/sample.rb
|
|
69
|
+
- test/actor_test.rb
|
|
70
|
+
- test/command_test.rb
|
|
71
|
+
- test/configuration_test.rb
|
|
72
|
+
- test/fixtures
|
|
73
|
+
- test/scm
|
|
74
|
+
- test/ssh_test.rb
|
|
75
|
+
- test/utils.rb
|
|
76
|
+
- test/fixtures/config.rb
|
|
77
|
+
- test/fixtures/custom.rb
|
|
78
|
+
- test/scm/cvs_test.rb
|
|
79
|
+
- test/scm/subversion_test.rb
|
|
80
|
+
- README
|
|
81
|
+
- MIT-LICENSE
|
|
82
|
+
- CHANGELOG
|
|
83
|
+
- THANKS
|
|
80
84
|
test_files: []
|
|
85
|
+
|
|
81
86
|
rdoc_options: []
|
|
87
|
+
|
|
82
88
|
extra_rdoc_files: []
|
|
89
|
+
|
|
83
90
|
executables:
|
|
84
|
-
|
|
91
|
+
- cap
|
|
85
92
|
extensions: []
|
|
93
|
+
|
|
86
94
|
requirements: []
|
|
95
|
+
|
|
87
96
|
dependencies:
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rake
|
|
99
|
+
version_requirement:
|
|
100
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - ">="
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: 0.7.0
|
|
105
|
+
version:
|
|
106
|
+
- !ruby/object:Gem::Dependency
|
|
107
|
+
name: net-ssh
|
|
108
|
+
version_requirement:
|
|
109
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
110
|
+
requirements:
|
|
111
|
+
- - ">="
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: 1.0.10
|
|
114
|
+
version:
|
|
115
|
+
- !ruby/object:Gem::Dependency
|
|
116
|
+
name: net-sftp
|
|
117
|
+
version_requirement:
|
|
118
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: 1.1.0
|
|
123
|
+
version:
|