Sha256: e7168500bbc13eb167e9ef6ddf91fdfd85d3e8a02eed80de959605931cebd82f
Contents?: true
Size: 348 Bytes
Versions: 2
Compression:
Stored size: 348 Bytes
Contents
module Sheetsu class Create < Sheetsu::Request def row(row, options={}) add_options_to_url(options) response = call(:post, row) parse_response(response) end def rows(rows, options={}) add_options_to_url(options) response = call(:post, { rows: rows }) parse_response(response) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sheetsu-1.1.0 | lib/sheetsu/create.rb |
sheetsu-1.0.0 | lib/sheetsu/create.rb |