emitter 0.1.1 → 0.1.2
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.
- data/lib/emitter.rb +4 -1
- data/spec/fixtures/biplane/lib/biplane/characterization.rb +0 -1
- data/spec/fixtures/biplane/lib/biplane/summarization.rb +0 -1
- data/spec/fixtures/dirigible/lib/dirigible/characterization.rb +0 -2
- data/spec/fixtures/dirigible/lib/dirigible/summarization.rb +0 -1
- metadata +3 -3
data/lib/emitter.rb
CHANGED
@@ -14,11 +14,13 @@ module BrighterPlanet
|
|
14
14
|
|
15
15
|
require 'leap'
|
16
16
|
require 'cohort_scope'
|
17
|
-
base.extend
|
17
|
+
base.extend Leap::Subject
|
18
18
|
base.send :include, const_get('CarbonModel')
|
19
19
|
|
20
20
|
require 'characterizable'
|
21
|
+
base.send :include, Characterizable
|
21
22
|
base.send :include, const_get('Characterization')
|
23
|
+
base.add_implicit_characteristics
|
22
24
|
|
23
25
|
require 'data_miner'
|
24
26
|
base.send :include, const_get('Data')
|
@@ -33,6 +35,7 @@ module BrighterPlanet
|
|
33
35
|
base.send :include, const_get('Relationships')
|
34
36
|
end
|
35
37
|
|
38
|
+
base.extend SummaryJudgement
|
36
39
|
base.send :include, const_get('Summarization')
|
37
40
|
end
|
38
41
|
|
@@ -4,13 +4,11 @@ module BrighterPlanet
|
|
4
4
|
module Dirigible
|
5
5
|
module Characterization
|
6
6
|
def self.included(base)
|
7
|
-
base.send :include, Characterizable
|
8
7
|
base.characterize do
|
9
8
|
has :distance
|
10
9
|
has :payload
|
11
10
|
has :dirigible_class
|
12
11
|
end
|
13
|
-
base.add_implicit_characteristics
|
14
12
|
end
|
15
13
|
end
|
16
14
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: emitter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andy Rossmeissl
|