Is there a way to generate the views separately using the rails generate command? I would also be willing to install a gem to accomplish that task f one exists. Basically the sc
You can generate the controller and the view using the controller generator.
rails g controller controllername new create
This will create actions new and create with their corresponding views.
new
create
You still need to set up your routes manually with this.