123456789_123456789_123456789_123456789_123456789_

Module: ActionController::BasicImplicitRender

Do not use. This module is for internal use only.

Instance Method Summary

Instance Method Details

#default_render

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/basic_implicit_render.rb', line 11

def default_render
  head :no_content
end

#send_action(method, *args)

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/basic_implicit_render.rb', line 5

def send_action(method, *args)
  ret = super
  default_render unless performed?
  ret
end