module GoogleSheetsAppendroid

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

append(rows, range) click to toggle source
# File lib/google_sheets_appendroid.rb, line 17
def self.append(rows, range)
  AppendRows.new(rows, range).punch_it
end
configure() { |configuration| ... } click to toggle source
# File lib/google_sheets_appendroid.rb, line 12
def self.configure
  self.configuration ||= Configuration.new
  yield configuration if block_given?
end