searchlogic 2.4.13 → 2.4.14

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.
@@ -2,4 +2,4 @@
2
2
  :major: 2
3
3
  :build:
4
4
  :minor: 4
5
- :patch: 13
5
+ :patch: 14
@@ -212,7 +212,11 @@ module Searchlogic
212
212
  (casted_value + (Time.zone.utc_offset * -1)).in_time_zone
213
213
  end
214
214
  else
215
- casted_value.in_time_zone
215
+ if options[:skip_conversion]
216
+ casted_value.utc
217
+ else
218
+ casted_value.in_time_zone
219
+ end
216
220
  end
217
221
  else
218
222
  casted_value
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{searchlogic}
8
- s.version = "2.4.13"
8
+ s.version = "2.4.14"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben Johnson of Binary Logic"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 4
8
- - 13
9
- version: 2.4.13
8
+ - 14
9
+ version: 2.4.14
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ben Johnson of Binary Logic