Method: Object#vputs

Defined in:
lib/core/object.rb

#vputs(m = "") ⇒ Object

MESSAGES Debugging output helpers



70
71
72
# File 'lib/core/object.rb', line 70

def vputs(m="")
  puts "[INFO] -- #{m.is_a?(String) ? m : m.inspect}" if verbose?
end