Usage: # Use the User Model to create all actions. rails g stager:scaffold User # Use the User Model to create two actions. rails g stager:scaffold User index show # Use the User Model to create all actions, except one action. rails g stager:scaffold User ! show # Create a new User Model with all actions. rails g stager:scaffold User name:string email:string # Create a new User Model and three actions. rails g stager:scaffold User name:string email:string index new create Options: --namespaced_model # Create a namespaced Model. --skip_migration # Skip the migration file. --skip_timestamps # Skip the timestamps. --skip_presenter # Skip the presenter.