I have been attempting to complete this tutorial, but have run into a problem with the foreman start
line. I am using a windows 7, 64 bit machine and am attemp
I had this problem. I fixed it by uninstalling version 0.62 of the foreman gem and installing 0.61.
gem uninstall foreman
gem install foreman -v 0.61
Uninstalling the heroku toolbelt and reinstall it to a path that does not have spaces in it, for example C:\heorku\
will help a bit. Aside from that the heroku windows installer is horribly broken at the moment, not exactly a point of pride for us. To work around the issue with foreman you can set the environment variables your self using export VAR=VALUE
and then run your app using what ever commands you put in your procfile.
This is going to improve in the future.
Yes, heroku-toolbelt-installer is not working correctly at present (30-Aug-2013). For windows the following steps worked for me:
One thing to add is that if you install Heroku to a directory with spaces, that will also cause an error when you try and do gem install foreman -v 0.61
(on Windows).
Once I'd reinstalled Heroku to C:\Heroku instead of C:\Program Files\Heroku then I was able to make this work using Eric Speelman's solution above.