class Sheetsu::Create

Public Instance Methods

row(row, options={}) click to toggle source
# File lib/sheetsu/create.rb, line 10
def row(row, options={})
  add_options_to_url(options)

  response = call(:post, row)
  parse_response(response)
end
rows(rows, options={}) click to toggle source
# File lib/sheetsu/create.rb, line 17
def rows(rows, options={})
  add_options_to_url(options)

  response = call(:post, { rows: rows })
  parse_response(response)
end