class PgSearch::Configuration

def associations

def associations
  return [] unless options[:associated_against]
  options[:associated_against].map do |association, column_names|
    Association.new(model, association, column_names)
  end.flatten
end