Class: IRB::Irb

Inherits:
Object
  • Object
show all
Defined in:
lib/live_console.rb

Instance Method Summary collapse

Instance Method Details

Fix an IRB bug; it ignores your output method.



173
174
175
# File 'lib/live_console.rb', line 173

def print(*args)
  context.output *args
end

#printf(*args) ⇒ Object

Fix an IRB bug; it ignores your output method.



168
169
170
# File 'lib/live_console.rb', line 168

def printf(*args)
  context.output(sprintf(*args))
end