norr-couchrest 0.33.01 → 0.33.02

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.
@@ -73,8 +73,8 @@ module CouchRest
73
73
  # Auto parse Time objects
74
74
  self[property.name] = if ((property.init_method == 'new') && target == 'Time')
75
75
  # Using custom time parsing method because Ruby's default method is toooo slow
76
- self[key].is_a?(String) ? Time.mktime_with_offset(self[key].dup) : self[key]
77
- #self[key].is_a?(String) ? Time.parse(self[key].dup) : self[key]
76
+ #self[key].is_a?(String) ? Time.mktime_with_offset(self[key].dup) : self[key]
77
+ self[key].is_a?(String) ? Time.parse(self[key].dup) : self[key]
78
78
  # Float instances don't get initialized with #new
79
79
  elsif ((property.init_method == 'new') && target == 'Float')
80
80
  cast_float(self[key])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: norr-couchrest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.01
4
+ version: 0.33.02
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. Chris Anderson