class IRB::FileInputMethod
Use a File
for IO
with irb, see InputMethod
Public Class Methods
Source
# File lib/irb/input-method.rb, line 139 def initialize(file) @io = file.is_a?(IO) ? file : File.open(file) @external_encoding = @io.external_encoding end
Creates a new input method object
Source
# File lib/irb/input-method.rb, line 128 def open(file, &block) begin io = new(file) block.call(io) ensure io&.close end end
Public Instance Methods
Source
# File lib/irb/input-method.rb, line 161 def encoding @external_encoding end
The external encoding for standard input.
Source
# File lib/irb/input-method.rb, line 148 def eof? @io.closed? || @io.eof? end
Whether the end of this input method has been reached, returns true
if there is no more data to read.
See IO#eof?
for more information.
Source
# File lib/irb/input-method.rb, line 155 def gets print @prompt @io.gets end
Reads the next line from this input method.
See IO#gets
for more information.
Source
# File lib/irb/input-method.rb, line 166 def inspect 'FileInputMethod' end
For debug message