tbuser (owner)

Fork Of

gist: 176792 by technic... Capistrano recipe for using...

Revisions

gist: 177071 Download_button fork
public
Public Clone URL: git://gist.github.com/177071.git
Embed All Files: show embed
deploy.rb #
1
2
3
4
5
6
7
namespace :db do
  task :pull do
    run "cd #{current_release} && RAILS_ENV=#{rails_env} rake db:data:dump"
    download "#{current_release}/db/data.yml", "db/data.yml"
    `rake db:reset db:data:load`
  end
end