diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-08-01 12:16:47 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-08-01 12:19:09 +0200 |
commit | 7c03190344e42aa215f52e8c2ccfda073b43590b (patch) | |
tree | eb8bd7875584f19e392640466d55cf2b184091df /actionpack/lib/action_controller | |
parent | 54901acbc9f53a3e534edd882b509e0733a93153 (diff) | |
parent | 7c5e4227d19b8c311425e39201c215d2ac775957 (diff) | |
download | rails-7c03190344e42aa215f52e8c2ccfda073b43590b.tar.gz rails-7c03190344e42aa215f52e8c2ccfda073b43590b.tar.bz2 rails-7c03190344e42aa215f52e8c2ccfda073b43590b.zip |
Merge pull request #21008 from svenwin/patch-1
Add documentation to get a running custom base controller [ci skip]
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 2c3b3f4e05..17371a5392 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -183,7 +183,7 @@ module ActionController # Shortcut helper that returns all the modules included in # ActionController::Base except the ones passed as arguments: # - # class MetalController + # class MyBaseController < ActionController::Metal # ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |left| # include left # end |