I have a app that I'm deploying to a development server using Capistrano. I'd like to force this deployment to use the development database. So far the only way I've managed to do it is to make my production database info in database.yml
equal to the development info. But this is a complete hack.
I've tried setting rails_env
to development in deploy.rb
but that hasn't worked.
Thoughts?