Travis CI and Heroku are two of my favorite tools. Recently I tried to figure out if there was an easy way to have Travis automatically deploy to Heroku once the tests have passed. Turns out it’s incredibly easy! All you need to do is add the following as your after_script in your .travis.yml file. after_script: # Install the Heroku gem (or the Heroku toolbelt) - gem install heroku # Add your Hero

