lib/activesearch/mongoid.rb in activesearch-0.0.5 vs lib/activesearch/mongoid.rb in activesearch-0.0.6

- old
+ new

@@ -1,5 +1,6 @@ +require 'activesearch/base' require 'activesearch/mongoid/model' module ActiveSearch # TODO: Wrap this so all engines behave consistently @@ -8,36 +9,18 @@ Mongoid::Model.where(:_keywords.in => text + text.map { |word| "#{I18n.locale}:#{word}"}) end module Mongoid def self.included(base) - base.extend ClassMethods + base.extend Base end protected def reindex ActiveSearch::Mongoid::Model.reindex(self, self.class.search_fields, self.class.search_options) end def deindex ActiveSearch::Mongoid::Model.deindex(self) - end - - module ClassMethods - def search_options - @search_options - end - - def search_fields - @search_fields - end - - def search_by(*fields) - @search_options = fields.pop if fields.last.is_a?(Hash) - conditions = {if: @search_options.delete(:if), unless: @search_options.delete(:unless)} - @search_fields = fields - self.after_save :reindex, conditions - self.after_destroy :deindex, conditions - end end end end \ No newline at end of file