module TrelloLeadTime::Config
Attributes
cycle_time_lists[RW]
finance_type_labels[RW]
list_name_matcher_for_done[RW]
organization_name[RW]
queue_time_lists[RW]
Public Instance Methods
configure() { |self| ... }
click to toggle source
# File lib/trello_lead_time/config.rb, line 10 def configure reset! yield self end
set_trello_key_and_token(key, token)
click to toggle source
# File lib/trello_lead_time/config.rb, line 15 def set_trello_key_and_token(key, token) Trello.configure do |cfg| cfg.developer_public_key = key cfg.member_token = token end end