class IRB::InputMethod
:nodoc:
def gets
Reads the next line from this input method.
def gets fail NotImplementedError, "gets" end
def initialize(file = STDIN_FILE_NAME)
def initialize(file = STDIN_FILE_NAME) @file_name = file end
def inspect
def inspect 'Abstract InputMethod' end
def readable_after_eof?
read.
Whether this input method is still readable when there is no more data to
def readable_after_eof? false end
def support_history_saving?
def support_history_saving? false end
def winsize
def winsize if instance_variable_defined?(:@stdout) && @stdout.tty? @stdout.winsize else [24, 80] end end