Sha256: 901d8a74a586bfbf0fec41aa1023e424e0ea425877d3248737d24d4c2e139f0e
Contents?: true
Size: 688 Bytes
Versions: 84
Compression:
Stored size: 688 Bytes
Contents
require 'cgi' module ActionController module CgiExt # 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. module Stdinput def self.included(base) base.class_eval do remove_method :stdinput attr_accessor :stdinput end base.alias_method_chain :initialize, :stdinput end def initialize_with_stdinput(type = nil, stdinput = $stdin) @stdinput = stdinput @stdinput.set_encoding(Encoding::BINARY) if @stdinput.respond_to?(:set_encoding) initialize_without_stdinput(type || 'query') end end end end
Version data entries
84 entries across 81 versions & 17 rubygems