binarylogic-searchlogic 2.1.4 → 2.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +5 -1
- data/VERSION.yml +1 -1
- data/lib/searchlogic/active_record_consistency.rb +1 -1
- data/lib/searchlogic/search.rb +1 -1
- data/searchlogic.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
== 2.1.
|
1
|
+
== 2.1.4
|
2
|
+
|
3
|
+
* Check for the existence of id before undefining it.
|
4
|
+
|
5
|
+
== 2.1.3 released 2009-07-12
|
2
6
|
|
3
7
|
* Added a no conflic resolution for other libraries already using the "search" method. If you have a conflict, use "searchlogic".
|
4
8
|
* Put the hidden order field in a div, to be valid XHTML.
|
data/VERSION.yml
CHANGED
@@ -13,7 +13,7 @@ module Searchlogic
|
|
13
13
|
# This fixes that problem.
|
14
14
|
def merge_joins_with_searchlogic(*args)
|
15
15
|
joins = merge_joins_without_searchlogic(*args)
|
16
|
-
joins.collect { |j| j.split(" ") }.flatten.uniq
|
16
|
+
joins.collect { |j| j.is_a?(String) ? j.split(" ") : j }.flatten.uniq
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
data/lib/searchlogic/search.rb
CHANGED
data/searchlogic.gemspec
CHANGED