I'm new to rails, but not to programming. I'm trying to create a Case Management app, I'm running the command
ruby script/generate scaffold Case casename:string caseid:string
This works fine, however because Case is a reserved word I'm getting errors when trying to view localhost:3000/Cases
Is there anyway around this or do I just have to use a different name?
Thanks in advance.
casesis not,caseis. So it might throw an error like:syntax error, unexpected '|', expecting kELSE or kWHENwhile rendering the /cases route. Renaming is the only option worth it. – Swanand Feb 11 '10 at 12:00