class ThinkingSphinx::Middlewares::Geographer

Public Instance Methods

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

  app.call contexts
end