module Kernel
Private Instance Methods
wp(object, color = nil)
click to toggle source
# File lib/wirb/wp.rb, line 6 def wp(object, color = nil) if color puts Wirb.colorize_string object.inspect, color else puts Wirb.colorize_result object.inspect end end