sunspot_rails 0.11.2 → 0.11.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/TODO +3 -10
  2. data/VERSION.yml +1 -1
  3. data/dev_tasks/gemspec.rake +1 -1
  4. metadata +6 -3
data/TODO CHANGED
@@ -1,15 +1,8 @@
1
- == 0.11
2
- * Update sunspot.yml
3
- * add log_level support
4
- * add solr_home support
5
- * add bootstrap method to setup a new solr instance
6
-
7
- == 0.12
8
- * add a method to disable sunspot updates for certain values, e.g.
9
- if you just touch a record, sunspot shouldn't index the
10
-
1
+ * Session proxy should give access to config
11
2
  =======
12
3
  * Fix final status output for reindex
13
4
  * Add batch-per-request option
14
5
  * Optionally yield from reindex
15
6
  * Access to all searchable classes
7
+ * Add a method to disable sunspot updates for certain values, e.g.
8
+ if you just touch a record, sunspot shouldn't index the
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 2
2
+ :patch: 3
3
3
  :major: 0
4
4
  :minor: 11
@@ -26,7 +26,7 @@ TEXT
26
26
  'spec/mock_app/{app,lib,db,vendor,config}/**/*',
27
27
  'spec/mock_app/{tmp,log,solr}']
28
28
  s.add_dependency 'escape', '>= 0.0.4'
29
- s.add_dependency 'sunspot', '= 0.10.6'
29
+ s.add_dependency 'sunspot', '>= 0.10.6', '<= 0.10.7'
30
30
  s.add_development_dependency 'rspec', '~> 1.2'
31
31
  s.add_development_dependency 'rspec-rails', '~> 1.2'
32
32
  s.add_development_dependency 'ruby-debug', '~> 0.10'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunspot_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.2
4
+ version: 0.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Brown
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-11-06 00:00:00 -05:00
15
+ date: 2009-11-16 00:00:00 -05:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -31,9 +31,12 @@ dependencies:
31
31
  version_requirement:
32
32
  version_requirements: !ruby/object:Gem::Requirement
33
33
  requirements:
34
- - - "="
34
+ - - ">="
35
35
  - !ruby/object:Gem::Version
36
36
  version: 0.10.6
37
+ - - <=
38
+ - !ruby/object:Gem::Version
39
+ version: 0.10.7
37
40
  version:
38
41
  - !ruby/object:Gem::Dependency
39
42
  name: rspec