# File lib/thinking_sphinx/middlewares/inquirer.rb, line 48 def call(raw_results, meta_results) context[:results] = raw_results.to_a context[:raw] = context[:results].dup context[:meta] = meta_results.inject({}) { |hash, row| hash[row['Variable_name']] = row['Value'] hash } total = context[:meta]['total_found'] ThinkingSphinx::Logger.log :message, "Found #{total} result#{'s' unless total == 1}" end