class SkypeSearch::Messages

Public Instance Methods

created_at() click to toggle source
# File lib/skype_search/db/messages.rb, line 9
def created_at
  Time.at(self.timestamp).to_datetime.strftime(TIME_FORMATTER)
end
to_s() click to toggle source
# File lib/skype_search/db/messages.rb, line 5
def to_s
  "[#{self.created_at}] #{self.from_dispname} > #{self.body_xml}"
end