mongoid-time_with_named_zone 0.1.3 → 0.1.4
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47c61ecde1e0577a2e05de0fd9eec9fcc5d88826
|
4
|
+
data.tar.gz: dba4846f6b9cbac1566827f62da6f99095060676
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aa8c656e02b29a268e230246d3016f4cc5166bb2afe975de582bb673c7eb7c5222bddff0fce61b922abfad7e5bff63e5a70f8a012f283cb96450a50d74db7e4
|
7
|
+
data.tar.gz: e57395d13a27a7f28d6cc7efefb5f7c4be2c080da58deaa2f0135a325e2df4c8050724885d83c30bb4903b42f027ec77ab3e58a8a85c2d08f108d443fc2f5e25
|
@@ -20,7 +20,8 @@ module Mongoid
|
|
20
20
|
# Get the object as it was stored in the database, and instantiate`
|
21
21
|
# this custom class from it.
|
22
22
|
def demongoize(object)
|
23
|
-
object[:time]
|
23
|
+
return nil unless object && object[:time] && object[:zone]
|
24
|
+
object[:time].in_time_zone(object[:zone])
|
24
25
|
end
|
25
26
|
|
26
27
|
def mongoize(object)
|