le1t0-capistrano 2.5.18.014 → 2.5.18.015

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.
Files changed (5) hide show
  1. data/CHANGELOG +4 -0
  2. data/VERSION +1 -1
  3. data/bin/cap +1 -1
  4. data/le1t0-capistrano.gemspec +207 -0
  5. metadata +4 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 2.5.18.015 / Aug 4, 2010
2
+
3
+ Fix loading TeeIO
4
+
1
5
  == 2.5.18.014 / Jul 27, 2010
2
6
 
3
7
  Made loading of TeeIO dependent on existence of deploy or deploy:migrations in ARGV
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.5.18.014
1
+ 2.5.18.015
data/bin/cap CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'capistrano/cli'
4
- if ARGV.any? { |arg| [ "deploy", "deploy:migrations" ].include?(arg) }
4
+ if ARGV.any? { |arg| [ "deploy", "deploy:migrations", "deploy:cold", "deploy:cold:migrations" ].include?(arg) }
5
5
  require 'capistrano/cli/tee_io'
6
6
  TeeIO.tee_all
7
7
  TeeIO.tee_all_off
@@ -0,0 +1,207 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{le1t0-capistrano}
8
+ s.version = "2.5.18.015"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Le1t0"]
12
+ s.date = %q{2010-08-04}
13
+ s.description = %q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
14
+ s.email = ["dev@ewout.to"]
15
+ s.executables = ["capify", "cap"]
16
+ s.extra_rdoc_files = [
17
+ "README"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "CHANGELOG",
22
+ "README",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "bin/cap",
26
+ "bin/capify",
27
+ "le1t0-capistrano.gemspec",
28
+ "lib/capistrano.rb",
29
+ "lib/capistrano/callback.rb",
30
+ "lib/capistrano/cli.rb",
31
+ "lib/capistrano/cli/execute.rb",
32
+ "lib/capistrano/cli/help.rb",
33
+ "lib/capistrano/cli/help.txt",
34
+ "lib/capistrano/cli/options.rb",
35
+ "lib/capistrano/cli/tee_io.rb",
36
+ "lib/capistrano/cli/ui.rb",
37
+ "lib/capistrano/command.rb",
38
+ "lib/capistrano/configuration.rb",
39
+ "lib/capistrano/configuration/actions/file_transfer.rb",
40
+ "lib/capistrano/configuration/actions/inspect.rb",
41
+ "lib/capistrano/configuration/actions/invocation.rb",
42
+ "lib/capistrano/configuration/callbacks.rb",
43
+ "lib/capistrano/configuration/connections.rb",
44
+ "lib/capistrano/configuration/execution.rb",
45
+ "lib/capistrano/configuration/loading.rb",
46
+ "lib/capistrano/configuration/namespaces.rb",
47
+ "lib/capistrano/configuration/roles.rb",
48
+ "lib/capistrano/configuration/servers.rb",
49
+ "lib/capistrano/configuration/variables.rb",
50
+ "lib/capistrano/errors.rb",
51
+ "lib/capistrano/extensions.rb",
52
+ "lib/capistrano/logger.rb",
53
+ "lib/capistrano/multistage.rb",
54
+ "lib/capistrano/processable.rb",
55
+ "lib/capistrano/recipes/compat.rb",
56
+ "lib/capistrano/recipes/deploy.rb",
57
+ "lib/capistrano/recipes/deploy/dependencies.rb",
58
+ "lib/capistrano/recipes/deploy/local_dependency.rb",
59
+ "lib/capistrano/recipes/deploy/remote_dependency.rb",
60
+ "lib/capistrano/recipes/deploy/scm.rb",
61
+ "lib/capistrano/recipes/deploy/scm/accurev.rb",
62
+ "lib/capistrano/recipes/deploy/scm/base.rb",
63
+ "lib/capistrano/recipes/deploy/scm/bzr.rb",
64
+ "lib/capistrano/recipes/deploy/scm/cvs.rb",
65
+ "lib/capistrano/recipes/deploy/scm/darcs.rb",
66
+ "lib/capistrano/recipes/deploy/scm/git.rb",
67
+ "lib/capistrano/recipes/deploy/scm/mercurial.rb",
68
+ "lib/capistrano/recipes/deploy/scm/none.rb",
69
+ "lib/capistrano/recipes/deploy/scm/perforce.rb",
70
+ "lib/capistrano/recipes/deploy/scm/subversion.rb",
71
+ "lib/capistrano/recipes/deploy/strategy.rb",
72
+ "lib/capistrano/recipes/deploy/strategy/base.rb",
73
+ "lib/capistrano/recipes/deploy/strategy/checkout.rb",
74
+ "lib/capistrano/recipes/deploy/strategy/copy.rb",
75
+ "lib/capistrano/recipes/deploy/strategy/export.rb",
76
+ "lib/capistrano/recipes/deploy/strategy/remote.rb",
77
+ "lib/capistrano/recipes/deploy/strategy/remote_cache.rb",
78
+ "lib/capistrano/recipes/deploy/templates/maintenance.rhtml",
79
+ "lib/capistrano/recipes/standard.rb",
80
+ "lib/capistrano/recipes/templates/maintenance.rhtml",
81
+ "lib/capistrano/role.rb",
82
+ "lib/capistrano/server_definition.rb",
83
+ "lib/capistrano/shell.rb",
84
+ "lib/capistrano/ssh.rb",
85
+ "lib/capistrano/task_definition.rb",
86
+ "lib/capistrano/transfer.rb",
87
+ "lib/capistrano/version.rb",
88
+ "test/cli/execute_test.rb",
89
+ "test/cli/help_test.rb",
90
+ "test/cli/options_test.rb",
91
+ "test/cli/ui_test.rb",
92
+ "test/cli_test.rb",
93
+ "test/command_test.rb",
94
+ "test/configuration/actions/file_transfer_test.rb",
95
+ "test/configuration/actions/inspect_test.rb",
96
+ "test/configuration/actions/invocation_test.rb",
97
+ "test/configuration/callbacks_test.rb",
98
+ "test/configuration/connections_test.rb",
99
+ "test/configuration/execution_test.rb",
100
+ "test/configuration/loading_test.rb",
101
+ "test/configuration/namespace_dsl_test.rb",
102
+ "test/configuration/roles_test.rb",
103
+ "test/configuration/servers_test.rb",
104
+ "test/configuration/variables_test.rb",
105
+ "test/configuration_test.rb",
106
+ "test/deploy/local_dependency_test.rb",
107
+ "test/deploy/remote_dependency_test.rb",
108
+ "test/deploy/scm/accurev_test.rb",
109
+ "test/deploy/scm/base_test.rb",
110
+ "test/deploy/scm/bzr_test.rb",
111
+ "test/deploy/scm/darcs_test.rb",
112
+ "test/deploy/scm/git_test.rb",
113
+ "test/deploy/scm/mercurial_test.rb",
114
+ "test/deploy/scm/none_test.rb",
115
+ "test/deploy/scm/subversion_test.rb",
116
+ "test/deploy/strategy/copy_test.rb",
117
+ "test/extensions_test.rb",
118
+ "test/fixtures/cli_integration.rb",
119
+ "test/fixtures/config.rb",
120
+ "test/fixtures/custom.rb",
121
+ "test/logger_test.rb",
122
+ "test/role_test.rb",
123
+ "test/server_definition_test.rb",
124
+ "test/shell_test.rb",
125
+ "test/ssh_test.rb",
126
+ "test/task_definition_test.rb",
127
+ "test/transfer_test.rb",
128
+ "test/utils.rb"
129
+ ]
130
+ s.homepage = %q{http://github.com/le1t0/capistrano}
131
+ s.rdoc_options = ["--charset=UTF-8"]
132
+ s.require_paths = ["lib"]
133
+ s.rubygems_version = %q{1.3.6}
134
+ s.summary = %q{Capistrano – Welcome to easy deployment with Ruby over SSH}
135
+ s.test_files = [
136
+ "test/cli/execute_test.rb",
137
+ "test/cli/help_test.rb",
138
+ "test/cli/options_test.rb",
139
+ "test/cli/ui_test.rb",
140
+ "test/cli_test.rb",
141
+ "test/command_test.rb",
142
+ "test/configuration/actions/file_transfer_test.rb",
143
+ "test/configuration/actions/inspect_test.rb",
144
+ "test/configuration/actions/invocation_test.rb",
145
+ "test/configuration/callbacks_test.rb",
146
+ "test/configuration/connections_test.rb",
147
+ "test/configuration/execution_test.rb",
148
+ "test/configuration/loading_test.rb",
149
+ "test/configuration/namespace_dsl_test.rb",
150
+ "test/configuration/roles_test.rb",
151
+ "test/configuration/servers_test.rb",
152
+ "test/configuration/variables_test.rb",
153
+ "test/configuration_test.rb",
154
+ "test/deploy/local_dependency_test.rb",
155
+ "test/deploy/remote_dependency_test.rb",
156
+ "test/deploy/scm/accurev_test.rb",
157
+ "test/deploy/scm/base_test.rb",
158
+ "test/deploy/scm/bzr_test.rb",
159
+ "test/deploy/scm/darcs_test.rb",
160
+ "test/deploy/scm/git_test.rb",
161
+ "test/deploy/scm/mercurial_test.rb",
162
+ "test/deploy/scm/none_test.rb",
163
+ "test/deploy/scm/subversion_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
+ ]
178
+
179
+ if s.respond_to? :specification_version then
180
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
181
+ s.specification_version = 3
182
+
183
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
184
+ s.add_runtime_dependency(%q<net-ssh>, [">= 2.0.14"])
185
+ s.add_runtime_dependency(%q<net-sftp>, [">= 2.0.0"])
186
+ s.add_runtime_dependency(%q<net-scp>, [">= 1.0.0"])
187
+ s.add_runtime_dependency(%q<net-ssh-gateway>, [">= 1.0.0"])
188
+ s.add_runtime_dependency(%q<highline>, [">= 0"])
189
+ s.add_development_dependency(%q<mocha>, [">= 0"])
190
+ else
191
+ s.add_dependency(%q<net-ssh>, [">= 2.0.14"])
192
+ s.add_dependency(%q<net-sftp>, [">= 2.0.0"])
193
+ s.add_dependency(%q<net-scp>, [">= 1.0.0"])
194
+ s.add_dependency(%q<net-ssh-gateway>, [">= 1.0.0"])
195
+ s.add_dependency(%q<highline>, [">= 0"])
196
+ s.add_dependency(%q<mocha>, [">= 0"])
197
+ end
198
+ else
199
+ s.add_dependency(%q<net-ssh>, [">= 2.0.14"])
200
+ s.add_dependency(%q<net-sftp>, [">= 2.0.0"])
201
+ s.add_dependency(%q<net-scp>, [">= 1.0.0"])
202
+ s.add_dependency(%q<net-ssh-gateway>, [">= 1.0.0"])
203
+ s.add_dependency(%q<highline>, [">= 0"])
204
+ s.add_dependency(%q<mocha>, [">= 0"])
205
+ end
206
+ end
207
+
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 2
7
7
  - 5
8
8
  - 18
9
- - 14
10
- version: 2.5.18.014
9
+ - 15
10
+ version: 2.5.18.015
11
11
  platform: ruby
12
12
  authors:
13
13
  - Le1t0
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-07-27 00:00:00 +02:00
18
+ date: 2010-08-04 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -116,6 +116,7 @@ files:
116
116
  - VERSION
117
117
  - bin/cap
118
118
  - bin/capify
119
+ - le1t0-capistrano.gemspec
119
120
  - lib/capistrano.rb
120
121
  - lib/capistrano/callback.rb
121
122
  - lib/capistrano/cli.rb