Changeset 5085
- Timestamp:
- 09/10/06 00:16:43 (2 years ago)
- Files:
-
- tools/capistrano/lib/capistrano/recipes/standard.rb (modified) (1 diff)
- tools/capistrano/lib/capistrano/shell.rb (added)
- tools/capistrano/lib/capistrano/version.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/lib/capistrano/recipes/standard.rb
r4564 r5085 258 258 send(method, ENV["COMMAND"]) 259 259 end 260 261 desc <<-DESC 262 Begin an interactive Capistrano session. This gives you an interactive 263 terminal from which to execute tasks and commands on all of your servers. 264 (This is still an experimental feature, and is subject to change without 265 notice!) 266 DESC 267 task(:shell) do 268 require 'capistrano/shell' 269 Capistrano::Shell.run!(self) 270 end tools/capistrano/lib/capistrano/version.rb
r4831 r5085 25 25 STRING = [MAJOR, MINOR, TINY].join(".") 26 26 27 SSH_REQUIRED = [1,0, 8]27 SSH_REQUIRED = [1,0,10] 28 28 SFTP_REQUIRED = [1,1,0] 29 29 end