Class: IRB::StdioInputMethod

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

Instance Attribute Summary

Attributes inherited from InputMethod

#file_name, #prompt

Instance Method Summary collapse

Constructor Details

#initializeStdioInputMethod

Returns a new instance of StdioInputMethod.



43
44
45
46
47
48
49
# File 'lib/irb/input-method.rb', line 43

def initialize
  super
  @line_no = 0
  @line = []
  @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

Instance Method Details

#encodingObject



69
70
71
# File 'lib/irb/input-method.rb', line 69

def encoding
  @stdin.external_encoding
end

#eof?Boolean

Returns:

  • (Boolean)


57
58
59
# File 'lib/irb/input-method.rb', line 57

def eof?
  @stdin.eof?
end

#getsObject



51
52
53
54
55
# File 'lib/irb/input-method.rb', line 51

def gets
  print @prompt
  line = @stdin.gets
  @line[@line_no += 1] = line
end

#line(line_no) ⇒ Object



65
66
67
# File 'lib/irb/input-method.rb', line 65

def line(line_no)
  @line[line_no]
end

#readable_atfer_eof?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/irb/input-method.rb', line 61

def readable_atfer_eof?
  true
end