class Trello::Card

Public Instance Methods

creation_date() click to toggle source
# File lib/trello-changelog/trello/card.rb, line 3
def creation_date
  epoch_from_id = self.id[0..7].hex
  DateTime.strptime(epoch_from_id.to_s,'%s')
end