In Files

  • irb/input-method.rb

IRB::InputMethod

Attributes

file_name[R]
prompt[RW]

Public Class Methods

new(file = STDIN_FILE_NAME) click to toggle source
 
               # File irb/input-method.rb, line 23
def initialize(file = STDIN_FILE_NAME)
  @file_name = file
end
            

Public Instance Methods

gets() click to toggle source
 
               # File irb/input-method.rb, line 30
def gets
  IRB.fail NotImplementedError, "gets"
end
            
readable_atfer_eof?() click to toggle source
 
               # File irb/input-method.rb, line 35
def readable_atfer_eof?
  false
end