Sha256: c1c1e9a69b3e1a8fdb364acb92a74014fbcf053eafe113f09cded8baa050afb2
Contents?: true
Size: 959 Bytes
Versions: 9
Compression:
Stored size: 959 Bytes
Contents
← [documentation](documentation.md) ## Generators ```ruby rails g the_comments NAME rails g the_comments:views NAME ``` #### Migrations ```ruby rake the_comments_engine:install:migrations ``` ### Full list ```ruby rails g the_comments --help ``` #### Main ```ruby rails g the_comments install ``` This will create: * config/initializers/the_comments.rb * app/controllers/comments_controller.rb * app/models/comment.rb #### Controllers ```ruby rails g the_comments controllers ``` This will create: * app/controllers/comments_controller.rb #### Models ```ruby rails g the_comments models ``` This will create: * app/models/comment.rb #### Config ```ruby rails g the_comments config ``` #### Locals ```ruby rails g the_comments locales ``` #### Views ```ruby 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 ```
Version data entries
9 entries across 9 versions & 3 rubygems