From b9f2e1db3500ae2cf25712d87372ecbdd5e9313c Mon Sep 17 00:00:00 2001 From: hachi8833 Date: Mon, 30 Dec 2024 15:44:14 +0900 Subject: [PATCH] =?UTF-8?q?[8.0.1]=20command=5Fline.md=E3=81=AE=E5=8E=9F?= =?UTF-8?q?=E6=96=87=E6=9B=B4=E6=96=B0=E3=82=92=E8=A8=B3=E6=96=87=E3=81=AB?= =?UTF-8?q?=E5=8F=8D=E6=98=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guides/source/ja/command_line.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/guides/source/ja/command_line.md b/guides/source/ja/command_line.md index fe147e80245..ec5c54a785f 100644 --- a/guides/source/ja/command_line.md +++ b/guides/source/ja/command_line.md @@ -65,7 +65,12 @@ $ rails new my_app | `--skip-system-test` | システムテストのファイルをスキップ | | `--skip-bootsnap` | bootsnap gemをスキップ | | `--skip-dev-gems` | development用gemの追加をスキップ | +| `--skip-thruster` | Thrusterのセットアップをスキップ | | `--skip-rubocop` | RuboCopのセットアップをスキップ | +| `--skip-brakeman` | Brakemanのセットアップをスキップ | +| `--skip-ci` | GitHub CIファイルのセットアップをスキップ | +| `--skip-kamal` | Kamalのセットアップをスキップ | +| `--skip-solid` | Solid Cache、Solid Queue、Solid Cableのセットアップをスキップ | `rails new`には他にも多くのオプションを渡せます。すべてのオプションを表示するには`rails new --help`を実行してください。 @@ -116,6 +121,30 @@ development: PostgreSQLを選択したことに対応するデータベース設定が生成されたことがわかります。 +### デフォルトをスキップする + +一部のファイルの生成をスキップしたい場合や、一部のライブラリを完全にスキップしたい場合は、以下のように`rails new`コマンドに`--skip`で始まるオプション引数の1つを渡せます。 + +```bash +$ rails new sas --skip-active-storage +Based on the specified options, the following options will also be activated: + + --skip-action-mailbox [due to --skip-active-storage] + --skip-action-text [due to --skip-active-storage] + + create + create README.md + ... +``` + +上の例では、Active Storageがスキップされるのに加えて、Active Storage機能に依存しているAction MailboxとAction Textもスキップされます。 + +オプションの完全なリスト (スキップ可能なものを含む) については、`--help`で確認してください。 + +```bash +$ rails new --help +``` + コマンドラインの基礎 -------------------