1
1

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 5 years have passed since last update.

RailsでController作成時にhelperやassetsファイルが作成されない様にする

Last updated at Posted at 2016-03-19

すぐ忘れるので、メモ。
Controller作成時にhelperやassets関連のファイルを作成しないようにするには以下のオプションをつけて、Controllerを作成する。

rails g controller コントローラー名 --no-helper --no-assets

またconfig/application.rbに以下の設定をしておくと、Controller作成時にいちいちオプションをつけなくても良い。

config/application.rb
config.generators.stylesheets = false
config.generators.javascripts = false
config.generators.helper      = false
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?