Class: Sheetsu::Update
Instance Method Summary
collapse
Methods inherited from Request
#call, #initialize
Instance Method Details
#patch(options) ⇒ Object
11
12
13
14
15
16
|
# 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) ⇒ Object
4
5
6
7
8
9
|
# File 'lib/sheetsu/update.rb', line 4
def put(options)
add_options_to_url(options)
response = call(:put, options[:data])
parse_response(response)
end
|