I am using a few persisted Tire models in my Rails app. Searching has been working fine, using Tire.search ['index1','index2'], :load => true do ... But I now made a new index and model, and I get the following error when trying to include it in the search and access its results:
undefined method `detect' for #<AuthoredHistory:0x000001013d6a88>
I see it's coming from Tire::Results::Collection#results, down at the last line:
@response['hits']['hits'].map { |item| records[item['_type']].detect { |record| record.id.to_s == item['_id'].to_s } }
For some reason records[item['_type']] returns a Tire::Results::Collection object for my other models, but with the new class it returns an AuthoredHistory object, which is my actual model class. I saw something about this on the gem's github page, but I am not doing anything with Tire.configuration.wrapper. I am including Persistence, Search, and Callbacks modules in all indexed models.
Am I missing something? Can someone please point me in the right direction? (karmi, I'm hoping you can save me here!)
[UPDATE]
Now I'm getting somewhere... an error was occurring when only 1 result from a particular index is returned with the results. If there are 2 or more results from an index, it wraps it in Tire::Results::Collection. Now to find a hack...
[UPDATE again]
Hacky solution found! Look below for the answer...