1. start with reading how to use git (http://en.wikipedia.org/wiki/Git_%28software%29)
2. create your local git repository (git init)
3. get a free heroku.com account
4. install the heroku gem (gem install heroku)
5. add your files (git add .)
6. commit your files (git commit -m “my new app”)
7. create your app @ heroku (heroku create) –> public key needed!
8. push your app to heroku (git push heroku master)
9. check the output (heroku logs)
10. add needed gems (create a .gems file in your folder and add it to the repository, each gem a new line e.g. hpricot)
11. get more Infos @ heroku (http://docs.heroku.com/)
