ettober
1
Hi there,
till 0.14 I was happily using Duane J.'s search lib ( http://
Peak Obsession ) on a couple of sites
After updating I get this error:
NoMethodError in Public#search
undefined method `validate_options’ for Article:Class
After a little searching I think I’ve understood that this should be
replaced with options.assert_valid_keys… but at this point I’m stuck…
Any hints?
thanks,
Ettore
ettober
2
Try to change 1. to 2. in search.rb.
-
validate_options([:only, :except, :case, :include, :join_include,
:conditions, :offset, :limit], options.keys)
-
options.assert_valid_keys(:only, :except, :case, :include,
:join_include, :conditions, :offset, :limit)
http://dev.rubyonrails.org/changeset/2167
Yoshi
2005/11/14, Ettore B. [email protected]: