Methods
D
M
S
Instance Public methods
default_render(*args)
    # File actionpack/lib/action_controller/metal/implicit_render.rb, line 9
 9:     def default_render(*args)
10:       render(*args)
11:     end
method_for_action(action_name)
    # File actionpack/lib/action_controller/metal/implicit_render.rb, line 13
13:     def method_for_action(action_name)
14:       super || if template_exists?(action_name.to_s, _prefixes)
15:         "default_render"
16:       end
17:     end
send_action(method, *args)
   # File actionpack/lib/action_controller/metal/implicit_render.rb, line 3
3:     def send_action(method, *args)
4:       ret = super
5:       default_render unless response_body
6:       ret
7:     end