outoftime-sunspot 0.8.8 → 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -155,6 +155,7 @@ http://outoftime.lighthouseapp.com/projects/20339-sunspot
155
155
  * Mat Brown (mat@patch.com)
156
156
  * Peer Allan (peer.allan@gmail.com)
157
157
  * Dmitriy Dzema (dima@dzema.name)
158
+ * Benjamin Krause (bk@benjaminkrause.com)
158
159
 
159
160
  == License
160
161
 
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
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 8
4
- :patch: 8
4
+ :patch: 9
@@ -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.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 00:00:00 -07:00
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