class Object

Public Instance Methods

tp(data=Class, *options) click to toggle source
# File lib/table_print.rb, line 71
def tp(data=Class, *options)
  printer = TablePrint::Printer.new(data, options)
  TablePrint::Config.io.puts printer.table_print unless data.is_a? Class
  TablePrint::Returnable.new(printer.message) # we have to return *something*, might as well be execution time.
end