class Sheetsu::Update

Public Instance Methods

patch(options) click to toggle source
# File lib/sheetsu/update.rb, line 17
def patch(options)
  add_options_to_url(options)

  response = call(:patch, options[:data])
  parse_response(response)
end
put(options) click to toggle source
# File lib/sheetsu/update.rb, line 10
def put(options)
  add_options_to_url(options)

  response = call(:put, options[:data])
  parse_response(response)
end