rails script/generate scaffold problem
Posted
by palecoder
on Stack Overflow
See other posts from Stack Overflow
or by palecoder
Published on 2010-06-15T11:54:58Z
Indexed on
2010/06/15
12:12 UTC
Read the original article
Hit count: 137
ruby-on-rails
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?
© Stack Overflow or respective owner