panko_serializer 0.1.9 → 0.1.10
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: 21cd55b904edc40658adf9f43695d89e8962b2c5
|
4
|
+
data.tar.gz: 664554f19ac39bca5e995e3fce1d50d2293e7ae2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4a4c7bd6d5e437ed52bb617dfa36b4970cd2274952df2870858f470bec00db243dd9fe1fd1b8bb163f42d51463ba41dce68f7a5d52a80803f0aa9d4dd0f9177
|
7
|
+
data.tar.gz: d047bfc815bd8e092f0dceee0e2815a38e04d082157cf4fb873215e61a0f80a17e82ef793ce0665b22707da65779048bd6f0f66e6c465d82754b8d8890725303
|
@@ -52,9 +52,6 @@ SerializationDescriptor sd_read(VALUE descriptor) {
|
|
52
52
|
}
|
53
53
|
|
54
54
|
VALUE sd_build_serializer(SerializationDescriptor sd) {
|
55
|
-
// We build the serializer and cache it on demand,
|
56
|
-
// because of our cache - we lock and create descriptor, while inside
|
57
|
-
// a descriptor we can't create another descriptor - deadlock.
|
58
55
|
if (sd->serializer == Qnil) {
|
59
56
|
VALUE args[0];
|
60
57
|
sd->serializer = rb_class_new_instance(0, args, sd->serializer_type);
|
@@ -65,7 +62,9 @@ VALUE sd_build_serializer(SerializationDescriptor sd) {
|
|
65
62
|
|
66
63
|
void sd_apply_serializer_config(VALUE serializer, VALUE object, VALUE context) {
|
67
64
|
rb_ivar_set(serializer, object_id, object);
|
68
|
-
|
65
|
+
if(context != Qnil && context != Qundef) {
|
66
|
+
rb_ivar_set(serializer, context_id, context);
|
67
|
+
}
|
69
68
|
}
|
70
69
|
|
71
70
|
VALUE serialization_descriptor_fields_set(VALUE self, VALUE fields) {
|
data/lib/panko/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: panko_serializer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yosi Attias
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|