puzzly_api_plugin 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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b821f3611700697ed1875b2ce456df23182e6838eb6b0d779e5ff992b8fbfd4
|
4
|
+
data.tar.gz: 5cfda4b4833579ddca6e43fcdd623e5d1de173142251b3dc068954165bd4ed15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ae0c24c9c56481baac5e286b065ba7aa367a1f96f6aec77fa407130ff07bce15877d709b50ec9abcab9e3ef7faf141359f53ed31f072063215005532b3c8c0f
|
7
|
+
data.tar.gz: 3765a3870d77789c17e69d67522f895812ba73b994a5322966382db5ddad9d86e8c60803a86bee9b4917d109a9cc5879f3c4dc09adde0274470ec846e9196d52
|
@@ -5,19 +5,22 @@ module PuzzlyApiPlugin
|
|
5
5
|
def self.create(schema)
|
6
6
|
context = ContextsCollection.instance.get_by_id schema.context_id
|
7
7
|
|
8
|
+
caches = CachesCollection.instance.get_by_schema schema
|
8
9
|
topics = TopicsCollection.instance.get_by_schema schema
|
9
10
|
|
10
11
|
SchemaView.new( context.to_identity,
|
11
12
|
schema,
|
12
|
-
topics.map { |_id, topic| topic.to_identity }
|
13
|
+
topics.map { |_id, topic| topic.to_identity },
|
14
|
+
caches.map {|_id, cache| cache.to_identity})
|
13
15
|
end
|
14
16
|
|
15
|
-
def initialize(context, schema, topics)
|
17
|
+
def initialize(context, schema, topics, caches)
|
16
18
|
schema.copy_to_hash self
|
17
19
|
self.delete MetadataFields::CONTEXT_ID
|
18
20
|
|
19
21
|
self[MetadataFields::CONTEXT] = context
|
20
22
|
self.topics topics
|
23
|
+
self.caches caches
|
21
24
|
end
|
22
25
|
end
|
23
26
|
end
|