client_data 0.1.6 → 0.1.7
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 +4 -4
- data/lib/client_data/methods.rb +1 -1
- data/lib/client_data/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b125525fd75bbc5b742d4febc9457f5641a6c978
|
|
4
|
+
data.tar.gz: 0fbcb346e7c1c330e0fd40978c43c9007e0fe0dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33ac4be001601b37a0f94d6ab7265ffd9a305bbd9a09a2517f4c31ec8bdb10de5ed40159674c08872ca426830cff2b6014de31b768e3303b7a3114e0ddcc728d
|
|
7
|
+
data.tar.gz: 2fe96c7fbc1634e2a8d9d06c1ad60c083fb983afa371f8f8e94c43ab3806467333c62db165255a11958e9d6b117b30c988d50d3a5da95feee749c7aa994840cc
|
data/lib/client_data/methods.rb
CHANGED
|
@@ -105,7 +105,7 @@ module ClientData
|
|
|
105
105
|
klass = self.class
|
|
106
106
|
loop do
|
|
107
107
|
keys.merge!(klass.__cs_builders || {}) if klass.respond_to?(:__cs_builders)
|
|
108
|
-
break keys unless klass.respond_to?(:superclass) && klass = klass.superclass
|
|
108
|
+
break keys.deep_dup unless klass.respond_to?(:superclass) && klass = klass.superclass
|
|
109
109
|
end
|
|
110
110
|
end
|
|
111
111
|
end
|
data/lib/client_data/version.rb
CHANGED