I included thinking_sphinx gem in my project.
Article.search "Bla-bla-bla"
works fine.
But when I include ransack gem in my Gemfile I get the error:
NoMethodError: undefined method `with_indifferent_access' for "Bla-bla-bla":String from /Users/ashvalev/.rvm/gems/ruby-1.9.2-p290/gems/ransack-0.7.2/lib/ransack/search.rb:21:in `initialize'
It is because ransack gem also uses name "search" for its searching method.
What can I do to make these gems work together?