2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】rails g controller コマンドで作成されるファイルを制限

Last updated at Posted at 2020-08-24

開発環境

rails 6.0.3
Minitestを使用していないプロジェクトを想定しています

説明

rails g controller <コントローラー名> <アクション名>
を実行すると、controllerview以外に、特に必要のないファイルが作成される。

これを回避するために、railsプロジェクト内に、次のファイルを作成しておけば,
rails g controllerコマンドを実行時に、
controllerview以外のファイルが作成されないようになる。

config/initializers/generators.rb
Rails.application.config.generators do |g|
  g.assets false
  g.helper false
  g.skip_routes true
end

上記ファイルの作成が面倒なときは、
rails g controllerコマンドを実行時に下記3つのオプションを追加して実行する。

ターミナル
rails g controller <コントローラー名> <アクション名> --no-assets --no-helper --skip-routes

上記によって、下記のメリットがある。
app/assets/ 配下にstylesheetsのファイルが作成されない
app/helpers/ 配下にhelperファイルが作成されない
config/routes.rbルーティングが追加されない

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?