Thinking Sphinx and Ransack in the same application?

I have Ransack set up to do simple attribute-based search in my application. Now, I'm trying to add TS to the app to enable full-text searching. Trouble is, both of these define a Model#search method. Has anyone here ever tried this combination? Is there a way to rename the search method on either of these?

Thanks in advance,

Walter

I have Ransack set up to do simple attribute-based search in my application. Now, I'm trying to add TS to the app to enable full-text searching. Trouble is, both of these define a Model#search method. Has anyone here ever tried this combination? Is there a way to rename the search method on either of these?

Thanks in advance,

Digging at this a little more in console, it appears that TS completely clobbers Ransack's search, so I know that much so far.

Walter

Use 'ransack' method for a ransack search [example]. This should solve all your problems.

Nice find -- this is exactly what I needed!

Walter