module ActionController
Action Controller
Action Controller is a module of Action Pack.
Action Controller provides a base controller class that can be subclassed to implement filters and actions to handle requests. The result of an action is typically content generated from views.
Public Class Methods
# File actionpack/lib/action_controller/metal/renderers.rb, line 7 def self.add_renderer(key, &block) Renderers.add(key, &block) end
See Renderers.add
# File actionpack/lib/action_controller/metal/renderers.rb, line 12 def self.remove_renderer(key) Renderers.remove(key) end
See Renderers.remove
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.