Hi Hunter,
That rake command won't work on Heroku anymore. rake db:setup and rake db:reset won't work they don't have permissions to drop and create databases.
You can just run "heroku rake db:migrate" and "heroku rake db:seed" if you want to seed it.
There's other issues with deploying to heroku though. I've just done a pull request that will hopefully fix them
In the mean time you could check out my fork which I've just tested deploying.
You'll need to check out the updated instruction for deploying to Heroku in the readme doc. You have to uncomment a couple of things that's all.
- d