Run script/console Remotely with Capistrano
Allows you to execute script/console remotely through Capistrano. Not for use on multi-machine :roles.
desc "remotely console" task :console, :roles => :app do input = '' run "cd #{current_path} && ./script/console #{ENV['RAILS_ENV']}" do |channel, stream, data| next if data.chomp == input.chomp || data.chomp == '' print data channel.send_data(input = $stdin.gets) if data =~ /^(>|\?)>/ end end