Sha256: b1b7281db25ae4779793b22aae3ce03b650eaca40623bbdfeb640519c77cf571
Contents?: true
Size: 1.45 KB
Versions: 16
Compression:
Stored size: 1.45 KB
Contents
Description: The masterview generator creates a controller to interact with a model. If the model does not exist, it creates the model as well. The generated code is equivalent to the "scaffold :model" declaration, making it easy to migrate when you wish to customize your controller and views. The generator takes a model name and an optional controller name as arguments. Scaffolded actions and views are created automatically. The scaffolded actions and views are: index, list, show, new, create, edit, update, destroy If a controller name is not given, the plural form of the model name will be used. The model and controller names may be given in CamelCase or under_score and should not be suffixed with 'Model' or 'Controller'. Both model and controller names may be prefixed with a module like a file path; see the Modules Example for usage. The masterview generator is heavily based on the shipped scaffold generator and the postback_generator by Tobias Luetke which follows the selfpostback style and moves the generated form into an partial. It also offers a lot more css hooks for customization. Example: ./script/generate masterview Account Bank This will generate an Account model and BankController with a full test suite and a basic user interface. Now create the accounts table in your database and browse to http://localhost/bank/ -- voila, you're on Rails!
Version data entries
16 entries across 16 versions & 1 rubygems