honkster-acts_as_solr 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGE_LOG +1 -0
- data/VERSION +1 -1
- data/lib/acts_as_solr/parser_methods.rb +1 -1
- metadata +1 -1
data/CHANGE_LOG
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
|
2
2
|
== CHANGE_LOG
|
3
3
|
=== Development
|
4
|
+
<b>NEW</b>:: Better error message for parse errors.
|
4
5
|
<b>NEW</b>:: Using ENV['RAILS_ENV'] instead of RAILS_ENV, so multiple test environments are supported.
|
5
6
|
<b>FIX</b>:: Fixed load path collisions
|
6
7
|
<b>NEW</b>:: Gemified acts_as_solr
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.4
|
@@ -81,7 +81,7 @@ module ActsAsSolr #:nodoc:
|
|
81
81
|
|
82
82
|
ActsAsSolr::Post.execute(Solr::Request::Standard.new(query_options))
|
83
83
|
rescue
|
84
|
-
raise "There was a problem executing your search: #{$!} in #{$!.backtrace.first}"
|
84
|
+
raise "There was a problem executing your search\n#{query_options.inspect}\n: #{$!} in #{$!.backtrace.first}"
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|