module Sheety

Constants

NEWLINE

Public Class Methods

auth() click to toggle source

Convenience Methods

# File lib/sheety.rb, line 18
def self.auth
  return Api.inst.auth
end
find_sheet(constraints) click to toggle source
# File lib/sheety.rb, line 30
def self.find_sheet(constraints)
  return Api.inst.find_sheet(constraints)
end
length_s(val) click to toggle source
# File lib/sheety.rb, line 4
def self.length_s(val)
  if val.respond_to?(:length) then val.length.to_s else "??" end
end
list_sheets() click to toggle source
# File lib/sheety.rb, line 42
def self.list_sheets
  sheets.each_with_index do |sheet, index|
    puts "Sheet #{index} - #{sheet}"
  end

  return nil
end
sheets(force_refetch=false) click to toggle source
# File lib/sheety.rb, line 22
def self.sheets(force_refetch=false)
  return Api.inst.sheets(force_refetch)
end
sheets_except(constraints) click to toggle source
# File lib/sheety.rb, line 34
def self.sheets_except(constraints)
  return Api.inst.sheets_except(constraints)
end
sheets_except_any(constraints) click to toggle source
# File lib/sheety.rb, line 38
def self.sheets_except_any(constraints)
  return Api.inst.sheets_except_any(constraints)
end
sheets_where(constraints) click to toggle source
# File lib/sheety.rb, line 26
def self.sheets_where(constraints)
  return Api.inst.sheets_where(constraints)
  end