solrsan 0.0.23 → 0.0.24

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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- solrsan (0.0.21)
4
+ solrsan (0.0.23)
5
5
  activemodel (~> 3.0.5)
6
6
  activesupport (~> 3.0.5)
7
7
  rsolr (~> 1.0.0)
@@ -135,6 +135,7 @@ module Solrsan
135
135
  def embed_highlighting(search_response)
136
136
  return search_response unless search_response[:highlighting]
137
137
 
138
+ excluded_highlighting_fields = ['id', 'db_id', 'type']
138
139
  #save original pagniate keys
139
140
  per_page = search_response[:docs].per_page
140
141
  start = search_response[:docs].start
@@ -142,7 +143,7 @@ module Solrsan
142
143
 
143
144
  highlighted_docs = search_response[:docs].map do |doc|
144
145
  hl_metadata = search_response[:highlighting][doc['id']]
145
- hl_metadata.each{ |k,v| doc[k] = v } if hl_metadata
146
+ hl_metadata.each{ |k,v| doc[k] = v unless excluded_highlighting_fields.include?(k)} if hl_metadata
146
147
 
147
148
  doc
148
149
  end
@@ -1,3 +1,3 @@
1
1
  module Solrsan
2
- VERSION = "0.0.23"
2
+ VERSION = "0.0.24"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solrsan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.23
4
+ version: 0.0.24
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,12 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-03-23 00:00:00.000000000 -07:00
12
+ date: 2011-03-24 00:00:00.000000000 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rsolr
17
- requirement: &2170187480 !ruby/object:Gem::Requirement
17
+ requirement: &2153746600 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 1.0.0
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2170187480
25
+ version_requirements: *2153746600
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activemodel
28
- requirement: &2170186980 !ruby/object:Gem::Requirement
28
+ requirement: &2153746100 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ~>
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: 3.0.5
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *2170186980
36
+ version_requirements: *2153746100
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: activesupport
39
- requirement: &2170186520 !ruby/object:Gem::Requirement
39
+ requirement: &2153745640 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ~>
@@ -44,7 +44,7 @@ dependencies:
44
44
  version: 3.0.5
45
45
  type: :runtime
46
46
  prerelease: false
47
- version_requirements: *2170186520
47
+ version_requirements: *2153745640
48
48
  description: solrsan is a lightweight wrapper for using Apache Solr within a Ruby
49
49
  application including Rails and Sinatra.
50
50
  email: