Class: IRB::FileInputMethod

Inherits:
InputMethod show all
Defined in:
lib/irb/input-method.rb

Overview

Use a File for IO with irb, see InputMethod

Constant Summary

Constants inherited from InputMethod

InputMethod::BASIC_WORD_BREAK_CHARACTERS

Instance Attribute Summary

Attributes inherited from InputMethod

#prompt

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from InputMethod

#readable_after_eof?, #support_history_saving?, #winsize

Constructor Details

#initialize(file) ⇒ FileInputMethod

Creates a new input method object



128
129
130
131
# File 'lib/irb/input-method.rb', line 128

def initialize(file)
  @io = file.is_a?(IO) ? file : File.open(file)
  @external_encoding = @io.external_encoding
end

Class Method Details

.open(file, &block) ⇒ Object



117
118
119
120
121
122
123
124
# File 'lib/irb/input-method.rb', line 117

def open(file, &block)
  begin
    io = new(file)
    block.call(io)
  ensure
    io&.close
  end
end

Instance Method Details

#closeObject



159
160
161
# File 'lib/irb/input-method.rb', line 159

def close
  @io.close
end

#encodingObject

The external encoding for standard input.



150
151
152
# File 'lib/irb/input-method.rb', line 150

def encoding
  @external_encoding
end

#eof?Boolean

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.

Returns:

  • (Boolean)


137
138
139
# File 'lib/irb/input-method.rb', line 137

def eof?
  @io.closed? || @io.eof?
end

#getsObject

Reads the next line from this input method.

See IO#gets for more information.



144
145
146
147
# File 'lib/irb/input-method.rb', line 144

def gets
  print @prompt
  @io.gets
end

#inspectObject

For debug message



155
156
157
# File 'lib/irb/input-method.rb', line 155

def inspect
  'FileInputMethod'
end