Skip to content

Instantly share code, notes, and snippets.

@novohispano
Created January 26, 2015 17:01
Show Gist options
  • Save novohispano/e78fdefec1296dd1f86f to your computer and use it in GitHub Desktop.
Save novohispano/e78fdefec1296dd1f86f to your computer and use it in GitHub Desktop.
Rake task for Heroku deployment.
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