Module: Yello::Trello

Included in:
Import
Defined in:
lib/yello/trello.rb

Instance Method Summary collapse

Instance Method Details

#authObject



12
13
14
# File 'lib/yello/trello.rb', line 12

def auth
  @auth ||= Yello::Auth.get
end

#clientObject



6
7
8
9
10
# File 'lib/yello/trello.rb', line 6

def client
  @client ||= ::Trello::Client.new( 
                                   developer_public_key: auth.key,
                                   member_token: auth.token)
end