How can you create multiple scaffolds at once at the rails command line?
so that these commands could be send at once
rails g scaffold person name:string
rails g scaffold adress street:string person:references
rails g scaffold website url:string person:references
Thank you