I'm having problems with the RoR support, even just geting a sample app running. Anyone else using this, any tips?
I'm having trouble getting my test ruby app to respond (and the others). E.g. for the Ruby app Test I remapped to /test/ and the app responds as far as giving a 404 error from the 404 file in the public_html/test/public/404.html.
I switched from production to development mode, and now I can see some errors, e.g.:
http://mydomain.com/test/ gives the error:
Routing Error
no route found to match "/test/" with {:method=>:get}
whereas when I run it on my machine locally, I get the same ruby welcome page that appears at Ruby on Rails: Welcome aboard. If I try:
http://mydomain.com/test/hello
I get the almost identical error:
Routing Error
no route found to match "/test/hello" with {:method=>:get}
Whereas again when I try on my local machine with http://localhost:3000/hello, then I get the following as expected:
Hello#index
Find me in app/views/hello/index.rhtml
It seems that something still isn't configured quite right, but I admit to being enough of a ruby neophyte that perhaps I'm missing something obvious?
tia!