My guess is that the shebang line in your dispatch.rb / dispatch.cgi /
dispatch.fcgi are all still pointing to your linux ruby location
/usr/bin/ruby or something like that.
Change them to c:/ruby/bin/ruby.exe and see if it works.
(This really ticks me off that we have to do this and I wish the rails
folks would come up with a workaround.)
My guess is that the shebang line in your dispatch.rb / dispatch.cgi /
dispatch.fcgi are all still pointing to your linux ruby location
/usr/bin/ruby or something like that.
Change them to c:/ruby/bin/ruby.exe and see if it works.
(This really ticks me off that we have to do this and I wish the rails
folks would come up with a workaround.)
A workaround for…? This is the standard command for starting Webrick
with your webapp. ruby script/server and ruby script\server both give me
the same result.
I have overwritten the dispatch files so they include the proper shebang
line…
A workaround for…? This is the standard command for starting Webrick
with your webapp. ruby script/server and ruby script\server both give me
the same result.
I have overwritten the dispatch files so they include the proper shebang
line…
I was actually referring to the email I quoted that mentioned the
shebang lines…
Seems like you’re experiencing a hard crash somewhere if it’s just
dumping you back to the console with no output. Does a standard rails
app start correctly? Does script/console work? Have you checked your
error logs?