acts_as_solr 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGE_LOG +2 -0
- data/VERSION +1 -1
- data/acts_as_solr.gemspec +2 -2
- data/lib/solr/request/select.rb +1 -1
- data/solr/webapps/solr.war +0 -0
- metadata +3 -3
data/CHANGE_LOG
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
== CHANGE_LOG
|
|
2
|
+
|
|
2
3
|
=== Development
|
|
4
|
+
<b>FIX</b>:: Updated bundled Solr to 1.4. (Kyle Maxwell)
|
|
3
5
|
<b>NEW</b>:: A unit test suite based on Shoulda, not requiring a running Solr or a Rails environment. (Mathias Meyer)
|
|
4
6
|
<b>NEW</b>:: Added the :offline option to the acts_as_solr method. (Mathias Meyer)
|
|
5
7
|
<b>NEW</b>:: Added :lazy flag to find_by_solr, and with that support to load records lazily. (Mathias Meyer)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.1
|
data/acts_as_solr.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{acts_as_solr}
|
|
8
|
-
s.version = "1.3.
|
|
8
|
+
s.version = "1.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Kyle Maxwell"]
|
|
12
|
-
s.date = %q{2010-03-
|
|
12
|
+
s.date = %q{2010-03-29}
|
|
13
13
|
s.default_executable = %q{acts_as_solr}
|
|
14
14
|
s.description = %q{Acts As Solr}
|
|
15
15
|
s.email = %q{kyle@onemorecloud.com}
|
data/lib/solr/request/select.rb
CHANGED
data/solr/webapps/solr.war
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 3
|
|
8
|
-
-
|
|
9
|
-
version: 1.3.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.3.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Kyle Maxwell
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-03-
|
|
17
|
+
date: 2010-03-29 00:00:00 -07:00
|
|
18
18
|
default_executable: acts_as_solr
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|