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.
You still need to set up your routes manually with this.