You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason Searchlogic::Search.respond_to?(:paginate) returns false, even though you can call paginate on it.
This was messing up Hobo, so I monkey patched it:
class Searchlogic::Search
def respond_to?(symbol)
return true if symbol === :paginate
old_respond_to? symbol
end
end
The text was updated successfully, but these errors were encountered:
For some reason Searchlogic::Search.respond_to?(:paginate) returns false, even though you can call paginate on it.
This was messing up Hobo, so I monkey patched it:
class Searchlogic::Search
def respond_to?(symbol)
return true if symbol === :paginate
old_respond_to? symbol
end
end
The text was updated successfully, but these errors were encountered: