Class: IRB::Irb
- Inherits:
-
Object
- Object
- IRB::Irb
- Defined in:
- lib/live_console.rb
Instance Method Summary collapse
-
#print(*args) ⇒ Object
Fix an IRB bug; it ignores your output method.
-
#printf(*args) ⇒ Object
Fix an IRB bug; it ignores your output method.
Instance Method Details
#print(*args) ⇒ Object
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 |