Complete the code to create a new Rails project named 'blog'.
rails [1] blogThe rails new command creates a new Rails project with the given name.
Complete the code to create a new Rails project without installing gems immediately.
rails new blog [1]The --skip-bundle option tells Rails to create the project but skip running bundle install immediately.
Fix the error in the command to create a new Rails project with PostgreSQL as the database.
rails new blog -d [1]The correct database option for PostgreSQL is postgresql. This tells Rails to configure the project to use PostgreSQL.
Fill both blanks to create a new Rails project named 'shop' with API mode and skip test files.
rails new shop [1] [2]
The --api option creates a lightweight Rails app for APIs. The --skip-test-unit option skips generating test files using Test::Unit.
Fill all three blanks to create a new Rails project named 'forum' with PostgreSQL, skip Action Mailbox, and skip Action Text.
rails new forum -d [1] [2] [3]
The -d postgresql option sets PostgreSQL as the database. The --skip-action-mailbox and --skip-action-text options skip generating those features.