Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 5085

Show
Ignore:
Timestamp:
09/10/06 00:16:43 (2 years ago)
Author:
minam
Message:

cap shell

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/lib/capistrano/recipes/standard.rb

    r4564 r5085  
    258258  send(method, ENV["COMMAND"]) 
    259259end 
     260 
     261desc <<-DESC 
     262Begin an interactive Capistrano session. This gives you an interactive 
     263terminal 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 
     265notice!) 
     266DESC 
     267task(:shell) do 
     268  require 'capistrano/shell' 
     269  Capistrano::Shell.run!(self) 
     270end 
  • tools/capistrano/lib/capistrano/version.rb

    r4831 r5085  
    2525    STRING = [MAJOR, MINOR, TINY].join(".") 
    2626     
    27     SSH_REQUIRED = [1,0,8
     27    SSH_REQUIRED = [1,0,10
    2828    SFTP_REQUIRED = [1,1,0] 
    2929  end