evt-entity_store 2.0.1.2 → 2.0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/entity_store/entity_store.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7422fd56e0693e0106bea79f72743954b2e662e6bda863d996eb2bdb4f7e865a
|
4
|
+
data.tar.gz: c074853f6990747ec8d57d89848f1eaf5e958e5e4ba5c15f4bb053dff8297c40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c6fba0e318996a46d3fcad18795d3c48e0682b2e9f5d7c293622f2e2dc7fe59e76f5885b5950a8d40507fec180edec6940dc5d9d82f10c8bdc172cf7f0c6f44
|
7
|
+
data.tar.gz: 58fd951eb79e0a3d0e698325ea30fc0cd5ba0b7b13d1c066c87b72b767da296ea9aad407bafc2621301aabd26a9c2a84859d1c8b1f9985f2800babe0d75e4c2e
|
@@ -46,10 +46,12 @@ module EntityStore
|
|
46
46
|
def build(snapshot_interval: nil, session: nil)
|
47
47
|
instance = new
|
48
48
|
|
49
|
-
Build.assure(instance)
|
50
|
-
|
51
49
|
instance.session = session
|
52
50
|
|
51
|
+
instance.configure
|
52
|
+
|
53
|
+
Build.assure(instance)
|
54
|
+
|
53
55
|
EntityCache.configure(
|
54
56
|
instance,
|
55
57
|
entity_class,
|
@@ -59,8 +61,6 @@ module EntityStore
|
|
59
61
|
attr_name: :cache
|
60
62
|
)
|
61
63
|
|
62
|
-
instance.configure
|
63
|
-
|
64
64
|
instance
|
65
65
|
end
|
66
66
|
|