Trying to follow the "Ruby on Rails 3 Tutorial" and running rails s
, getting the following error:
[path]\config.ru:1 in 'require': no such file to load -- fake_app
I've got the location of fake_app.rb
in the PATH (which I presume is what rails/rack is trying to find)
Contents of config.ru
are the default generated:
require "fake_app"
run Rack::Test::FakeApp
I am running rails 3.0.8 and Windows 7
Thanks for helping this complete novice out!