outoftime-sunspot 0.8.8 → 0.8.9
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/README.rdoc +1 -0
- data/TODO +3 -0
- data/VERSION.yml +1 -1
- data/lib/sunspot/session.rb +1 -1
- data/tasks/gemspec.rake +1 -1
- metadata +5 -2
data/README.rdoc
CHANGED
data/TODO
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
* sunspot-configure-solr
|
|
9
9
|
* Text fields allow multiple
|
|
10
10
|
* Don't allow ordering on multiple-allowed fields
|
|
11
|
+
* Detect Ranges in short-form #with()
|
|
12
|
+
* Expose delete by ID
|
|
13
|
+
* Support composite IDs
|
|
11
14
|
* Transactions
|
|
12
15
|
* Switch to RSolr
|
|
13
16
|
* Facet by type (?)
|
data/VERSION.yml
CHANGED
data/lib/sunspot/session.rb
CHANGED
|
@@ -55,7 +55,7 @@ module Sunspot
|
|
|
55
55
|
def index(*objects)
|
|
56
56
|
objects.flatten!
|
|
57
57
|
@updates += objects.length
|
|
58
|
-
objects.group_by { |object| object.class }.each_pair do |clazz, objs|
|
|
58
|
+
objects.group_by { |object| object.class }.to_hash.each_pair do |clazz, objs|
|
|
59
59
|
indexer_for(objs.first).add(objs)
|
|
60
60
|
end
|
|
61
61
|
end
|
data/tasks/gemspec.rake
CHANGED
|
@@ -8,7 +8,7 @@ begin
|
|
|
8
8
|
s.email = 'mat@patch.com'
|
|
9
9
|
s.homepage = 'http://github.com/outoftime/sunspot'
|
|
10
10
|
s.description = 'Library for expressive, powerful interaction with the Solr search engine'
|
|
11
|
-
s.authors = ['Mat Brown']
|
|
11
|
+
s.authors = ['Mat Brown', 'Peer Allan', 'Dmitriy Dzema', 'Benjamin Krause']
|
|
12
12
|
s.files = FileList['[A-Z]*', '{bin,lib,spec,tasks}/**/*', 'solr/{etc,lib,webapps}/**/*', 'solr/solr/conf/*', 'solr/start.jar']
|
|
13
13
|
s.add_dependency 'solr-ruby', '>= 0.0.6'
|
|
14
14
|
s.add_dependency 'daemons', '~> 1.0'
|
metadata
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: outoftime-sunspot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mat Brown
|
|
8
|
+
- Peer Allan
|
|
9
|
+
- Dmitriy Dzema
|
|
10
|
+
- Benjamin Krause
|
|
8
11
|
autorequire:
|
|
9
12
|
bindir: bin
|
|
10
13
|
cert_chain: []
|
|
11
14
|
|
|
12
|
-
date: 2009-06-
|
|
15
|
+
date: 2009-06-23 00:00:00 -07:00
|
|
13
16
|
default_executable: sunspot-solr
|
|
14
17
|
dependencies:
|
|
15
18
|
- !ruby/object:Gem::Dependency
|