Capistrano Over Https

Some users have had problems getting Capistrano to work with their non-Railsmachine repositories. If you have an account that requires you to use a HTTPS, you might need to add this to your deploy.rb to get deployments to work:

set :svn_username, 'user'
set :svn_password, 'password'

If you’re using Capistrano 2, use:

set :scm_username, 'user'
set :scm_password, 'password'
Meta