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

See Renderers.add

# File actionpack/lib/action_controller/metal/renderers.rb, line 9
def self.add_renderer(key, &block)
  Renderers.add(key, &block)
end

See Renderers.remove

# File actionpack/lib/action_controller/metal/renderers.rb, line 14
def self.remove_renderer(key)
  Renderers.remove(key)
end