module Airrecord

Constants

Error
VERSION

Attributes

api_key[RW]
throttle[RW]

Public Class Methods

table(api_key, base_key, table_name) click to toggle source
# File lib/airrecord/table.rb, line 242
def self.table(api_key, base_key, table_name)
  Class.new(Table) do |klass|
    klass.table_name = table_name
    klass.api_key = api_key
    klass.base_key = base_key
  end
end

Public Instance Methods

throttle?() click to toggle source
# File lib/airrecord.rb, line 14
def throttle?
  return true if @throttle.nil?

  @throttle
end