class TrelloLeadTime::Action
Public Class Methods
from_trello_action(trello_action)
click to toggle source
# File lib/trello_lead_time/action.rb, line 3 def self.from_trello_action(trello_action) Action.new(trello_action) end
new(trello_action)
click to toggle source
# File lib/trello_lead_time/action.rb, line 7 def initialize(trello_action) @trello_action = trello_action end
Public Instance Methods
data()
click to toggle source
# File lib/trello_lead_time/action.rb, line 15 def data @trello_action.data end
date()
click to toggle source
# File lib/trello_lead_time/action.rb, line 19 def date @trello_action.date end
type()
click to toggle source
# File lib/trello_lead_time/action.rb, line 11 def type @trello_action.type end