aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
diff options
context:
space:
mode:
authorSven Winkler <svenwin@gmail.com>2015-07-23 23:55:35 +0200
committerSven Winkler <svenwin@gmail.com>2015-07-23 23:55:35 +0200
commit7c5e4227d19b8c311425e39201c215d2ac775957 (patch)
treefbb3debbd4005ade2145a2165981951a4e3f7652 /actionpack/lib/action_controller/base.rb
parent430b7c8b518fc628f2647323ba2bbb8dbb6cdd35 (diff)
downloadrails-7c5e4227d19b8c311425e39201c215d2ac775957.tar.gz
rails-7c5e4227d19b8c311425e39201c215d2ac775957.tar.bz2
rails-7c5e4227d19b8c311425e39201c215d2ac775957.zip
Add documentation to get a running custom base controller [ci skip]
Diffstat (limited to 'actionpack/lib/action_controller/base.rb')
-rw-r--r--actionpack/lib/action_controller/base.rb2
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..f248e9474b 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 CustomBaseController < ActionController::Metal
# ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |left|
# include left
# end