Sha256: dc5b3e90ad8534e5735cb502675deb24d01b2e9122a2c67ca3e052db8434dd28
Contents?: true
Size: 492 Bytes
Versions: 3
Compression:
Stored size: 492 Bytes
Contents
module Trell class Client module Cards def cards(board_id, options = {}) get "boards/#{board_id}/cards", options end def create_card(options = {}) post 'cards', options end def card(id, options = {}) get "cards/#{id}", options end def update_card(id, options = {}) put "cards/#{id}", options end def delete_card(id, options = {}) delete "cards/#{id}", options end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trell-0.0.3 | lib/trell/client/cards.rb |
trell-0.0.2 | lib/trell/client/cards.rb |
trell-0.0.1 | lib/trell/client/cards.rb |