Created
January 26, 2015 17:01
-
-
Save novohispano/e78fdefec1296dd1f86f to your computer and use it in GitHub Desktop.
Rake task for Heroku deployment.
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 :deploy do | |
desc "Deploys app to Github & production." | |
task all: :environment do | |
if system("rake test:all") == false | |
puts "The tests fail." | |
break | |
end | |
puts "The tests passed." | |
puts "Pushing to Github" | |
if system("git push origin master") == false | |
puts "Couldn't push to Github" | |
break | |
end | |
puts "Done." | |
puts "Pushing to Heroku" | |
if system("git push heroku master") == false | |
puts "Couldn't push to Heroku" | |
break | |
end | |
puts "Done." | |
puts "Running migrations" | |
if heroku("rake db:migrate") == false | |
puts "Could't run migrations" | |
break | |
end | |
puts "Done." | |
end | |
end | |
def heroku(command) | |
system("GEM_HOME='' BUNDLE_GEMFILE='' GEM_PATH='' RUBYOPT='' /usr/local/heroku/bin/heroku run #{command}") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment