module Paf::Formattable::ClassMethods

Methods to be added to the including class

Public Instance Methods

to_s(*args) click to toggle source
Calls superclass method
# File lib/paf/formattable.rb, line 33
def to_s(*args)
  return super if args.empty?
  new(args[0]).to_s
end