Flowdock
new() public

No documentation

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

Hide source
# File lib/irb/input-method.rb, line 101
      def initialize
        super

        @line_no = 0
        @line = []
        @eof = false

        @stdin = IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
        @stdout = IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
      end
Register or log in to add new notes.