I am curious if there is some kind of reference or cheat sheet for the Rails generate command? Something that lists out all the possible generators (model, controller, migration, etc.) as well as options you can pass in for each (–skip-migration, etc.).
Share
You can get all of this information on the command line.
rails generatewith no generator name will output a list of all available generators and some information about global options.rails generate GENERATOR --helpwill list the options that can be passed to the specified generator.