BB Deploy
This is a gem for deploying Rails services to Heroku via Rake task. In order to use it, the app you are trying to deploy should be set up as follows:
Add the
bb_deploygem to your GemfileAdd
config/deploy.ymlto your application: http://bit.ly/2bUKVhYAdd this line to your Rakefile: load "#Gem::Specification.find_by_name('bb_deploy').gem_dir/lib/tasks/deploy.rake"
Make sure that your machine has all the necessary Git/Heroku keys, and that your endpoints are set up correctly.
That's it! You will now be able to deploy your app by typing
bundle exec rake heroku:deploy:<qa|staging|production>in the root dir of your app.