vote up 1 vote down star
1

I am running

ruby script/generate scaffold

or

ruby script/generate model

and I know the basic syntax, like

ruby script/generate scaffold Dude name:string face:boolean

but I do not know things like:

  • should names of variables have underscores or be camelCased?
  • what kind of variable types are acceptable?

Where can I find such information?

THANKS!

P.S. The answers to my two questions would help for now, too :)

flag

62% accept rate

4 Answers

vote up 3 vote down check

Type the command without arguments and the documentation is revealed:

$ script/generate model

You can use either camelcase or underscores for the model name.

  • Model names are singular; controller names are plural.
  • Field names use underscores.

I can't remember all the possible field types, I just look them up from the Migration docs, as linked above.

link|flag
Cool, thank you avit. – yar Feb 5 at 2:36
vote up 2 vote down

This document on Rails Migration would help.

With respect to the naming convention, I think the general adopted convention for Ruby on Rails is to have underscores.

To know which variable types are acceptable, refer to the section on Database Mapping.

link|flag
Awesome. Just in the nick of time, too... – yar Feb 5 at 1:59
vote up 1 vote down

To check Rails naming conventions, topfunky's Pluralizer was useful.

link|flag
Thanks Eric, that is also good information... – yar Feb 5 at 2:15
vote up 1 vote down

There is a resource on the rails wiki as a [List of Available Generators][1].

[1]: http://wiki.rubyonrails.org/rails/pages/availablegenerators"list of rails generators"

link|flag
Nice, thanks for that. +1 – yar yesterday

Your Answer

Get an OpenID
or

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