module EasySearch

Constants

Defaults
Regex

holds any regexp constants when dealing with search terms

VERSION

Public Class Methods

included(base) click to toggle source
# File lib/easy_search/core.rb, line 6
def self.included(base)
  base.send(:extend,  ClassMethods)
  base.send(:include, InstanceMethods)
  
  # before continuing, validate that the models identified (if any) in the
  # setup_tables block (within `Setup.config') exist and are valid ActiveRecord descendants
  Validations.validate_settings!
end