Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 959 Bytes

generators.md

File metadata and controls

74 lines (50 loc) · 959 Bytes

←   documentation

Generators

rails g the_comments NAME
rails g the_comments:views NAME

Migrations

rake the_comments_engine:install:migrations

Full list

rails g the_comments --help

Main

rails g the_comments install

This will create:

  • config/initializers/the_comments.rb
  • app/controllers/comments_controller.rb
  • app/models/comment.rb

Controllers

rails g the_comments controllers

This will create:

  • app/controllers/comments_controller.rb

Models

rails g the_comments models

This will create:

  • app/models/comment.rb

Config

rails g the_comments config

Locals

rails g the_comments locales

Views

rails g the_comments:views js
rails g the_comments:views css
rails g the_comments:views assets
rails g the_comments:views helper
rails g the_comments:views views