IRB::InputMethod
Use a File for IO with irb, see InputMethod
InputMethod
The file name of this input method, usually given during initialization.
Creates a new input method object
# File irb/input-method.rb, line 99 def initialize(file) super @io = IRB::MagicFile.open(file) end
The external encoding for standard input.
# File irb/input-method.rb, line 124 def encoding @io.external_encoding end
Whether the end of this input method has been reached, returns true if there is no more data to read.
true
See IO#eof? for more information.
# File irb/input-method.rb, line 110 def eof? @io.eof? end
Reads the next line from this input method.
See IO#gets for more information.
# File irb/input-method.rb, line 117 def gets print @prompt l = @io.gets l end
This page was generated for Ruby 2.5.1
Ruby-doc.org is provided by James Britt and Neurogami. Maximum R+D.
Generated with Ruby-doc Rdoc Generator 0.42.0.