I thought I would quickly post this.
Use the usual command to generate the scaffold.
rails generate scaffold Model
then in routes.rb
Change
resource :models
to
resource :models, :path => ‘model’
Posted by Suhas on March 1, 2015 in Uncategorized · 0 Comment
I thought I would quickly post this.
Use the usual command to generate the scaffold.
rails generate scaffold Model
then in routes.rb
Change
resource :models
to
resource :models, :path => ‘model’