module Rubinius::Debugger::Display
Public Instance Methods
ask(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 23 def ask(str) Readline.readline("| #{str}") end
crit(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 11 def crit(str) puts "[CRITICAL] #{str}" end
display(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 7 def display(str) puts "=> #{str}" end
error(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 15 def error(str) puts "* #{str}" end
info(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 3 def info(str) puts "| #{str}" end
section(str)
click to toggle source
# File lib/rubinius/debugger/display.rb, line 19 def section(str) puts "==== #{str} ====" end