evt-entity_projection 0.3.0.3 → 0.3.0.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 +5 -5
- data/lib/entity_projection/entity_projection.rb +9 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 51555a399f37fb64ce8180e92889a7c13718ace96c2df36c0d85c4beaba6b4c3
|
|
4
|
+
data.tar.gz: 3081b428e63896c2f9835344780e7a0291fff1a1b067f8115fe23a2e60d2b6a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9716b3f7043a28fe8fc1e5ad035fdab6e0b75a3c8a92ee2200165b993f643ee98c5284879fcc2e3e8a87907c58d061e1a743fd4aaf054db20550d970a7470040
|
|
7
|
+
data.tar.gz: b378b7b19e4f2d2f1c4eac1ac40c454e09dd1a464d8a61476aa4dce0d8d29574199bd5aeb97f0665fc32c005373dc98a21c74b5de7b08dc591e140ac53a56a50
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
module EntityProjection
|
|
2
2
|
def self.included(cls)
|
|
3
3
|
cls.class_exec do
|
|
4
|
+
Initializer.activate(self)
|
|
5
|
+
Virtual.activate(self)
|
|
6
|
+
|
|
4
7
|
include Log::Dependency
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
extend Build
|
|
10
|
+
extend Call
|
|
11
|
+
extend Info
|
|
12
|
+
extend ApplyMacro
|
|
13
|
+
extend EventRegistry
|
|
14
|
+
extend EntityNameMacro
|
|
12
15
|
|
|
13
16
|
virtual :configure
|
|
14
17
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: evt-entity_projection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.0.
|
|
4
|
+
version: 0.3.0.4
|
|
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:
|
|
11
|
+
date: 2018-10-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: evt-messaging
|
|
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
86
86
|
version: '0'
|
|
87
87
|
requirements: []
|
|
88
88
|
rubyforge_project:
|
|
89
|
-
rubygems_version: 2.6
|
|
89
|
+
rubygems_version: 2.7.6
|
|
90
90
|
signing_key:
|
|
91
91
|
specification_version: 4
|
|
92
92
|
summary: Projects event data into an entity
|