module Alephant::Lookup

Constants

VERSION

Public Class Methods

create(table_name, config={}) click to toggle source
# File lib/alephant/lookup.rb, line 12
def self.create(table_name, config={})
  @@lookup_tables[table_name] ||= LookupTable.new(table_name)
  LookupHelper.new(@@lookup_tables[table_name], config)
end