| Module | ActionController::CgiExt::Stdinput |
| In: |
actionpack/lib/action_controller/cgi_ext/stdinput.rb
|
Publicize the CGI’s internal input stream so we can lazy-read request.body. Make it writable so we don’t have to play $stdin games.
# File actionpack/lib/action_controller/cgi_ext/stdinput.rb, line 8 def self.included(base) base.class_eval do remove_method :stdinput attr_accessor :stdinput end base.alias_method_chain :initialize, :stdinput end