Skip to content

Commit

Permalink
Merge pull request #1801 from yasslab/update801_command_line
Browse files Browse the repository at this point in the history
[8.0.1] command_line.mdの原文更新を訳文に反映
  • Loading branch information
hachi8833 authored Jan 5, 2025
2 parents d6c93a9 + b9f2e1d commit bcef2b7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions guides/source/ja/command_line.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`を実行してください。

Expand Down Expand Up @@ -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
```

コマンドラインの基礎
-------------------

Expand Down

0 comments on commit bcef2b7

Please sign in to comment.