class Playbook::PbTimestamp::Timestamp

def timestamp_text

def timestamp_text
  case variant
  when "updated"
    format_updated_string
  when "elapsed"
    format_elapsed_string
  else
    show_date ? datetime_or_text : format_time_string
  end
end