Tag Archives: Rails

Switch Heroku Accounts

I have several Heroku accounts that I need to switch between for clients. I’ve been doing it by hand for a while, and then I remembered that I could just write a bash script to make a command for my forgetful brain. The basic steps are: >heroku keys:clear >rm ~/.heroku/credentials >heroku list So, my little bash script is: #!/bin/bash heroku [...]
Posted in Uncategorized | Also tagged | Leave a comment

Optimize your Rails environment on OS X

Getting your development environment setup just the way you like it takes some time.   I’ve done it several times recently and this is the setup I feel most productive with.
Posted in Rails | Also tagged , | Leave a comment