module Jekyll::Airtable

Constants

VERSION

Public Class Methods

client(options = {}) click to toggle source
# File lib/jekyll-airtable.rb, line 10
def self.client(options = {})
  Jekyll::Airtable::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source

Delegate to Airtable::Client

Calls superclass method
# File lib/jekyll-airtable.rb, line 15
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_all=false) click to toggle source

Delegate to Airtable::Client

Calls superclass method
# File lib/jekyll-airtable.rb, line 21
def self.respond_to?(method, include_all=false)
  return client.respond_to?(method, include_all) || super
end