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.



122
123
124
# File 'lib/live_console.rb', line 122

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

#printf(*args) ⇒ Object

Fix an IRB bug; it ignores your output method.



117
118
119
# File 'lib/live_console.rb', line 117

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