Rails Generators
1. Resource Generator (my favorite)
Using the resource generator creates everything from controller to migration. Running rails g resource User username:string email:string age:integer will result in the following:
# a user controller
class UsersCont...
jasperwreed.hashnode.dev3 min read