evt-entity_cache 0.17.0.1 → 0.17.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4ee3db1daa488f78e6bd6ceacf4610011e13cd68fb15e71ad3b24becc27f23f
4
- data.tar.gz: 1b2ca309f7b52b090652a050d9cbf6b134edc322e4ceae930916d52b09e17bf4
3
+ metadata.gz: 76f5b244a298307755229bd2d919114b915bf59dcbc101fd21a612a56a627a3f
4
+ data.tar.gz: 1f3bcc55d7e007d0c1bf5a527d95fede219c02c77742e5b8fba6c8082f272c7b
5
5
  SHA512:
6
- metadata.gz: 20ba976432a6b19033033a58f634a2950091ff1b0797ba2c8e1377acd97de146db6b2382729ababc1fc2d85443b9fce91bc5dead8112d84aa4adbd256a11c7ba
7
- data.tar.gz: 5888a42789862671da3707c0155cafedbd17559c5aa9a6f8201e508537a720c452d5ec1796df0d324aff079415136289e0cca79e4a776f379420a2cbb42d40b8
6
+ metadata.gz: e0778b5ab3cad1cac65920b7240339e28b03d36b8ab47d29e48778c32e1ff2c02fe488ebb79af8846f4f8b24d73fbe49bad906c60b317d561d90048ae1a4f7e2
7
+ data.tar.gz: 73824c0a380865e5933b377bfb2d3f0b896734339d47a19e99bcb495197962673d096cd0252276b55c976d00329113e09c6e241b01e4a8bccb5bacf652078645
@@ -1,7 +1,6 @@
1
1
  class EntityCache
2
- Configure.activate(self)
3
- Dependency.activate(self)
4
-
2
+ include Configure
3
+ include Dependency
5
4
  include Log::Dependency
6
5
 
7
6
  configure :entity_cache
@@ -9,7 +9,7 @@ class EntityCache
9
9
  )
10
10
 
11
11
  class Record
12
- Dependency.activate(self)
12
+ include Dependency
13
13
 
14
14
  dependency :clock, Clock::UTC
15
15
 
@@ -3,11 +3,10 @@ class EntityCache
3
3
  module External
4
4
  def self.included(cls)
5
5
  cls.class_exec do
6
- ::Configure.activate(self)
7
- Dependency.activate(self)
8
- Initializer.activate(self)
9
- Virtual.activate(self)
10
-
6
+ include ::Configure
7
+ include Dependency
8
+ include Initializer
9
+ include Virtual
11
10
  include Log::Dependency
12
11
 
13
12
  extend Build
@@ -1,8 +1,7 @@
1
1
  class EntityCache
2
2
  module Store
3
3
  class Internal
4
- Virtual.activate(self)
5
-
4
+ include Virtual
6
5
  include Log::Dependency
7
6
 
8
7
  attr_accessor :subject
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evt-entity_cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0.1
4
+ version: 0.17.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Eventide Project
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-09 00:00:00.000000000 Z
11
+ date: 2018-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: evt-configure