Method: Trello::Client#put

Defined in:
lib/trello/client.rb

#put(path, body = {}) ⇒ Object



27
28
29
30
# File 'lib/trello/client.rb', line 27

def put(path, body = {})
  uri = Addressable::URI.parse("https://api.trello.com/#{API_VERSION}#{path}")
  invoke_verb(:put, uri, body)
end