searchlogic
searchlogic copied to clipboard
Searchlogic provides object based searching, common named scopes, and other useful tools.
http://railsforum.com/viewtopic.php?id=38282 I didn't create the original post, but the problem is the same.
That is what I got in 'fields_for' helper in SearchLogic 2.4.19. searchlogic (2.4.19) lib/searchlogic/named_scopes/association_conditions.rb:45:in `association_condition_details' searchlogic (2.4.19) lib/searchlogic/named_scopes/association_conditions.rb:11:in`association_condition?' searchlogic (2.4.19) lib/searchlogic/named_scopes/association_conditions.rb:6:in `condition?' searchlogic (2.4.19) lib/searchlogic/named_scopes/association_ordering.rb:14:in`condition?' searchlogic (2.4.19) lib/searchlogic/named_scopes/ordering.rb:11:in `condition?' searchlogic...
I love search logic, but cannot get it to run in production mode. I found out that the cache_classes setting was the culprit. I know searchlogic works dynamically, but is...
Everything runs great when you change name of affected method to different name not including '_or_' --- How to get this error: 1. create empty rails app (rails 2.3.5) 2....
If _gte scope is used all other scopes are ignored
An existing named scope that shares its name with one of the model's columns is ignored when accessed via the `search` method. The `normalize_scope_name` method appends "_equals" with no regard...
Fantastic plugin/gem from working examples i have seen however, I have installed as gem and as plugin (tried both) in an admin controller i want to be able to search...
The search shows something like: SELECT birds.\* FROM birds INNER JOIN bird_sizes ON bird_sizes.id = birds.bird_size_id INNER JOIN bird_shapes ON bird_shapes.id = birds.bird_shape_id INNER JOIN bird_types ON bird_types.id = birds.bird_type_id...
is there any chance that searchlogic will support class method that returns a scope or ActiveRecord::Relation. They both support chainable lazily queries, this is better to construct more complex name...
class User < ActiveRecord::Base scope_procedure :foo, :bar def self.bar(foo) end end User.foo("bar") will raise arguments not matching error. The issue code should be: ``` def alias_scope(name, options = nil) alias_scopes[name.to_sym]...