norr-couchrest 0.30.2 → 0.30.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -74,9 +74,7 @@ module CouchRest
74
74
  # Auto parse Time objects
75
75
  self[property.name] = if ((property.init_method == 'new') && target == 'Time')
76
76
  # Using custom time parsing method because Ruby's default method is toooo slow
77
- #self[key].is_a?(String) ? Time.mktime_with_offset(self[key].dup) : self[key]
78
- # lets use something that is slow - that works :)
79
- self[key].is_a?(String) ? Time.parse(self[key].dup) : self[key]
77
+ self[key].is_a?(String) ? Time.mktime_with_offset(self[key].dup) : self[key]
80
78
  else
81
79
  # Let people use :send as a Time parse arg
82
80
  klass = ::CouchRest.constantize(target)
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.30.2
4
+ version: 0.30.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. Chris Anderson