rails script/generate scaffold problem
- by palecoder
I'm new to rails and was trying out the scaffold command - the following scaffold runs and works when I view it via web brick
script/generate book title:string
the following fails - gives me a weird route error
script/generate application name:string
the following works
script/generate app name:string
can anyone shed some light on this? Is 'application' a reserved word?