Method: Rest.put

Defined in:
lib/rest_api.rb

.put(url, data, options = {}) ⇒ Object



17
18
19
20
# File 'lib/rest_api.rb', line 17

def put(url, data, options = {})
  options[:data] = data
  rest_call(url, "put", options)
end