class Erlash::TipFormatter

Public Instance Methods

format() click to toggle source
# File lib/erlash/formatters/tip_formatter.rb, line 3
def format
  [].tap do |acc|
    acc << object.title
    acc << "  #{object.description}"
  end
end