quick reminder for installing gems to heroku
1. create the file .gems in your app's root directory; with the gem name, version and source; for example:
mislav-will_paginate --version '>= 2.3.2' --source gems.github.com
2. add to git:
git add .gems
git commit -m "added gem manifest"
3. deploy:
git push heroku master