Last active
January 3, 2016 10:09
-
-
Save augustf/8447292 to your computer and use it in GitHub Desktop.
Maintain nightly Concerto instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :reset_nightly do | |
system("git checkout .") | |
system("git pull") | |
Rake::Task["db:reset"].invoke | |
Rake::Task["db:migrate"].invoke | |
@user = User.new(:email => '[email protected]', :password => 'some_password', :password_confirmation => 'some_password', :is_admin => true) | |
@user.save | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment