Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • irb/input-method.rb

Included Modules

IRB::ReadlineInputMethod

Public Class Methods

new() click to toggle source
 
               # File 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
            

Public Instance Methods

encoding() click to toggle source
 
               # File irb/input-method.rb, line 136
def encoding
  @stdin.external_encoding
end
            
eof?() click to toggle source
 
               # File irb/input-method.rb, line 124
def eof?
  @eof
end
            
gets() click to toggle source
 
               # File irb/input-method.rb, line 112
def gets
  Readline.input = @stdin
  Readline.output = @stdout
  if l = readline(@prompt, false)
    HISTORY.push(l) if !l.empty?
    @line[@line_no += 1] = l + "\n"
  else
    @eof = true
    l
  end
end
            
line(line_no) click to toggle source
 
               # File irb/input-method.rb, line 132
def line(line_no)
  @line[line_no]
end
            
readable_atfer_eof?() click to toggle source
 
               # File irb/input-method.rb, line 128
def readable_atfer_eof?
  true
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.