active_event 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_event.rb +32 -31
- data/lib/active_event/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbe081963a57c1c0584f2b7f1ff75717adaab62e
|
4
|
+
data.tar.gz: 1306fc4de0cb6c5c70bdc9985db4b18d7ae4110f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8f84c88dfd7847f01fc0a5f04c803e94106e0c73806443b884b91e3eecce830c20bb7844929cd2c918b58d37d673a4f9695e9d487fca6a0e667879aa5689595
|
7
|
+
data.tar.gz: ff371ee9763f58022bca659ad011a7709b5d58345ee06b8104407ca6f23f7d5c4348decbee031b7df58e61690a1afc296aa78681209c8712d97f8caa510c952e
|
data/lib/active_event.rb
CHANGED
@@ -1,31 +1,32 @@
|
|
1
|
-
require '
|
2
|
-
require 'active_support
|
3
|
-
require '
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
autoload :
|
10
|
-
autoload :
|
11
|
-
autoload :
|
12
|
-
autoload :
|
13
|
-
autoload :
|
14
|
-
autoload :
|
15
|
-
autoload :
|
16
|
-
autoload :
|
17
|
-
autoload :
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
autoload :
|
24
|
-
autoload :
|
25
|
-
autoload :
|
26
|
-
autoload :
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
autoload :
|
31
|
-
|
1
|
+
require 'yaml'
|
2
|
+
require 'active_support'
|
3
|
+
require 'active_support/core_ext'
|
4
|
+
require 'active_event/version'
|
5
|
+
|
6
|
+
module ActiveEvent
|
7
|
+
extend ActiveSupport::Autoload
|
8
|
+
|
9
|
+
autoload :Autoload
|
10
|
+
autoload :Command
|
11
|
+
autoload :Domain
|
12
|
+
autoload :EventServer
|
13
|
+
autoload :EventSourceServer
|
14
|
+
autoload :EventType
|
15
|
+
autoload :ReplayServer
|
16
|
+
autoload :SSE
|
17
|
+
autoload :Validations
|
18
|
+
autoload :ValidationsRegistry
|
19
|
+
|
20
|
+
module Support
|
21
|
+
extend ActiveSupport::Autoload
|
22
|
+
|
23
|
+
autoload :AttrInitializer
|
24
|
+
autoload :AttrSetter
|
25
|
+
autoload :Autoload
|
26
|
+
autoload :Autoloader
|
27
|
+
autoload :MultiLogger
|
28
|
+
end
|
29
|
+
|
30
|
+
autoload :Event, (File.expand_path '../../app/models/active_event/event', __FILE__)
|
31
|
+
autoload :EventRepository, (File.expand_path '../../app/models/active_event/event_repository', __FILE__)
|
32
|
+
end
|
data/lib/active_event/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_event
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HicknHack Software
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|