vote up 2 vote down star

It seems to me that it is possible to break ruby on rails such that neither scaffolding works anymore nor database migration when particular model names are used.

In particular I noticed this when using "Dispatcher" for a model to be created via scaffold. If I created the same object with a different name everything works fine.

Has anybody made similar experiences, or is there a list of names not to be used?

Thanks

flag

80% accept rate

2 Answers

vote up 6 vote down check

Official list of reserved words in Rails: http://wiki.rubyonrails.org/rails/pages/reservedwords

"dispatcher" is listed under "Other Names Reported to Have Caused Trouble"

Hope that helps :)

link|flag
Thanks a lot this answer helps me a lot – txwikinger Aug 15 at 3:09
vote up 2 vote down

Dispatcher is a class defined by Rails under ActionController - so you're hitting a conflict with the Rails class.

In a Rails console:

>> Dispatcher
=> ActionController::Dispatcher

If you want to use the class name Dispatcher you can namespace it in a Module although it is probably better not to use a name that conflicts with a base Rails class.

link|flag
Thanks for this answer. This is certainly an interesting idea for the future. – txwikinger Aug 15 at 3:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.