Skip to content
Blog RubyOnRails: Create a Controller and Views for it using a single command

RubyOnRails: Create a Controller and Views for it using a single command

Lets create a controller named ‘home‘ with  views ‘index‘, ‘view2′ view3’.

Fortunately, you can do that in a single command.
Enter this command in your terminal:

$ rails generate controller home index view2 view3

Rails will create several files for you, including app/views/home/index.html.erb. This is the template that will be used to display the results of the index action (method) in the home controller.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.