1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Do not show --helper and --assets options in the controller generator help

These options are not actually available.
Thanks @soutaro for letting me aware of this.
This commit is contained in:
Akira Matsuda 2015-04-24 22:37:14 +09:00
parent 5d6b54339b
commit 9b36cf0fa4

View file

@ -19,7 +19,8 @@ module Rails
end
end
hook_for :template_engine, :test_framework, :helper, :assets
hook_for :template_engine, :test_framework
hook_for :helper, :assets, hide: true
private