class Sheetsu::Update
Public Instance Methods
patch(options)
click to toggle source
# File lib/sheetsu/update.rb, line 11 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 4 def put(options) add_options_to_url(options) response = call(:put, options[:data]) parse_response(response) end