Controller
Generates a controller.
Last updated
Generates a controller.
Last updated
[NAME]
- The name of the controller.
--spec
, --no-spec
, (Default: True)
Specify whether or not to generate a spec file along with the controller.
--rest
alias -r
, (Default: False)
Specify whether or not to generate a REST-style controller, with method route handler templates.
$ eucalypt g controller tweet
Generates a new controller with default options.
$ eucalypt g controller tweet --no-spec
Generates a new controller without a corresponding spec file.
$ eucalypt g controller tweet -r
Generates a REST-style controller.