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

document the Rails::ConsoleMethods#helper and #controller methods

Closes rails/rails#11362
This commit is contained in:
Damien Mathieu 2013-07-18 16:18:04 +02:00
parent ec17fca48f
commit 3c6767cade

View file

@ -1,9 +1,15 @@
module Rails
module ConsoleMethods
# Gets the helper methods available to the controller.
#
# This method assumes an `ApplicationController` exists, and it extends `ActionController::Base`
def helper
@helper ||= ApplicationController.helpers
end
# Gets a new instance of a controller object.
#
# This method assumes an `ApplicationController` exists, and it extends `ActionController::Base`
def controller
@controller ||= ApplicationController.new
end