Rails generators Flashcards

1
Q

What is the difference between the generation model/scaffold/resource?

A

models generate model and migration
rails g model Test name:text
# resource generate model, migration, controller and resource routing
rails g resource Test name:text
# scaffold generate model, migration, controller and routing with CRUD actions and view
rails g scaffold Test name:text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to generate a model inside a module?

A

rails g model admin/user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly