LoginSignup
1
1

More than 5 years have passed since last update.

rails g controllerのとき、CSS、JavaScript、ヘルパーのファイルが勝手に生成されないようにする方法

Last updated at Posted at 2013-03-23

環境

  • Rails 3.2.13

手順

config/application.rb に下記を追記します。

config.generators.helper = false
config.generators.stylesheets = false
config.generators.javascripts = false

以下のようにCSSとJavaScriptの設定をまとめて書くこともできます。

config.generators.helper = false
config.generators.assets = 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