# File lib/meta_search/searches/active_record.rb, line 10
      def self.included(base)
        base.extend ClassMethods

        base.class_eval do
          class_attribute :_metasearch_include_attributes, :_metasearch_exclude_attributes
          class_attribute :_metasearch_include_associations, :_metasearch_exclude_associations
          class_attribute :_metasearch_methods
          self._metasearch_include_attributes =
            self._metasearch_exclude_attributes =
            self._metasearch_exclude_associations =
            self._metasearch_include_associations = {}
          self._metasearch_methods = {}
        end
      end