Merge pull request #49594 from akhilgkrishnan/rails-new-database-desc-consistancy

Add consistent option description for --database on rails new
This commit is contained in:
Rafael Mendonça França 2023-10-12 18:55:01 +02:00 committed by GitHub
commit 13722f21ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ module Rails
desc: "Path to some #{name} template (can be a filesystem path or URL)"
class_option :database, type: :string, aliases: "-d", default: "sqlite3",
desc: "Preconfigure for selected database (options: #{DATABASES.join('/')})"
desc: "Preconfigure for selected database [options: #{DATABASES.join(", ")}]"
class_option :skip_git, type: :boolean, aliases: "-G", default: nil,
desc: "Skip git init, .gitignore and .gitattributes"