Flowdock
method

initialize_with_stdinput

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::CgiExt::Stdinput
initialize_with_stdinput(type = nil, stdinput = $stdin) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/cgi_ext/stdinput.rb, line 17
      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
Register or log in to add new notes.