class ThinkingSphinx::Middlewares::StaleIdChecker

Public Instance Methods

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

  app.call contexts
end