class ThinkingSphinx::Middlewares::ActiveRecordTranslator

Public Instance Methods

call(contexts) click to toggle source
# File lib/thinking_sphinx/middlewares/active_record_translator.rb, line 4
def call(contexts)
  contexts.each do |context|
    Inner.new(context).call
  end

  app.call contexts
end