I'm in the process of learning and I'm stuck on this issue. I'm reading the following book. "RailsSpace" By Micheal Hartl and Aurelius Prochazka and seem to be stuck here when I select "about your application environment" Can someone please help me.
What are you confusing? Could you tell us?
Not enough to go on here, but if the subject is a reflection of an error you're trying to debug I'll take a wild guess and suggest that you need to properly camelize the name of a controller. infoController => InfoController (caps to start each 'word').
I am reading 'Build your own Ruby on Rails web applications' by Patrick Lenz and when accessing http://localhost:3000/ I can connect to the application. But when I click "about your application environment" I receive this error: MissingSourceFile in Rails/ infoController#properties
I think it is booting up completely as this is what I see: => Booting Mongrel <use 'script/server webrick' to force WEBrick> => Rails applicatino starting on http://0.0.0.0:3000 => Calls with -d to detach => Ctrl-C to shutdown server ** Starting Mongrel listening at 0.0.0.0:3000 ** Starting Rails with development environment... ** Rails loaded ** Loading any Rails specific GemPlugins ** Singals ready. INT => stop <no restart>. ** Mongrel available at 0.0.0.0:3000 ** Use CTRL-C to stop
then that's it, there is no prompt... any advice for a noob? I have been struggling with this all weekend.
"you need to properly camelize the name of a controller. infoController => InfoController (caps to start each 'word')."
Also I did try to do this but could not figure it out. How do i make this change? Thanks for any help, it is much appreciated.
I'm in the process of learning and I'm stuck on this issue. I'm reading the following book. "RailsSpace" By Micheal Hartl and Aurelius Prochazka and seem to be stuck here when I select "about your application environment" Can someone please help me.
I'll take a random guess and say that you're missing the gem for
sqlite (which is the current default for applications). gem install
sqlite3-ruby to fix that.
"you need to properly camelize the name of a controller. infoController => InfoController (caps to start each 'word')."
Also I did try to do this but could not figure it out. How do i make this change? Thanks for any help, it is much appreciated.
if you are using postgreSQL do you need to run the sqlite gem?
Frederick Cheung wrote:
James Mcgrath wrote:
Frederick Cheung wrote:
I'm in the process of learning and I'm stuck on this issue. I'm reading the following book. "RailsSpace" By Micheal Hartl and Aurelius Prochazka and seem to be stuck here when I select "about your application environment" Can someone please help me.
I'll take a random guess and say that you're missing the gem for sqlite (which is the current default for applications). gem install sqlite3-ruby to fix that.
Thanks for the post. I had the same problem and the information provided fixed it for me.
J
I'm facing the same problem. but how Do I install the sqlite3 gem? Can anyone write the command? Does that have to navigate to the workspace parent folder or the project folder?
Please help as me too have been messing this all day.
Thanks
Robert Jefferson wrote:
James Mcgrath wrote:
Frederick Cheung wrote:
I'm in the process of learning and I'm stuck on this issue. I'm reading the following book. "RailsSpace" By Micheal Hartl and Aurelius Prochazka and seem to be stuck here when I select "about your application environment" Can someone please help me.
I'll take a random guess and say that you're missing the gem for sqlite (which is the current default for applications). gem install sqlite3-ruby to fix that.
Thanks for the post. I had the same problem and the information provided fixed it for me.
J
I'm facing the same problem. but how Do I install the sqlite3 gem? Can anyone write the command? Does that have to navigate to the workspace parent folder or the project folder?
Please help as me too have been messing this all day.
Thanks
I have successfully installed the sqlite3 gem. But I got a new error which is
RuntimeError in Rails/infoController#properties
unknown error RAILS_ROOT: C:/Users/User/project_space Application Trace | Framework Trace | Full Trace This error occurred while loading the following files: sqlite3/driver/dl/driver sqlite3/driver/dl/api
Do I need to execute the gem? How about should I do that? or what else I can do?
Thanks,
Robert Jefferson wrote:
I have successfully installed the sqlite3 gem. But I got a new error which is
RuntimeError in Rails/infoController#properties
unknown error RAILS_ROOT: C:/Users/User/project_space Application Trace | Framework Trace | Full Trace This error occurred while loading the following files: sqlite3/driver/dl/driver sqlite3/driver/dl/api
Do I need to execute the gem? How about should I do that? or what else I can do?
Thanks,
I have this problem as well, following this thread I'm at the same place. Any tips?
Thanks - Erick C.