The problem comes from SSH-KIT which has a bug<https://github.com/capistrano/sshkit/issues/39> . The problem is that Capistrano 3.1 is using ssh-kit version 1.3. *So we have to use Capistrano 3.0.1 until ssh-kit get fixed.*
Workaround : gem uninstall capistrano gem uninstall capistrano-rails gem uninstall sshkit rm Gemfile.lock Modify Gemfile : gem 'capistrano', '~> 3.0.1' gem 'sshkit', '~> 1.0.0' Install gems : bundle install -- You received this message because you are subscribed to the Google Groups "Capistrano" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web, visit https://groups.google.com/d/msgid/capistrano/2ee8c79b-dcf9-4d15-a4a9-16a8391bcb5f%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
