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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea513301dd1de90c029adabd1ee703d4587434be
4
- data.tar.gz: 49b4a948c223d91c3f0d2f75780b8f12de916fd4
3
+ metadata.gz: fbe081963a57c1c0584f2b7f1ff75717adaab62e
4
+ data.tar.gz: 1306fc4de0cb6c5c70bdc9985db4b18d7ae4110f
5
5
  SHA512:
6
- metadata.gz: 587103b0254c5ead8f78e6f8ebc0306e606fd93f2588b61ea66a61e2ed63364dabe0969150fada76b2c41d3f8a94642438fbddb824178d97c6dc87a63eed0bc2
7
- data.tar.gz: b08607c83a8e2c5b596637097c5f03e078e1f852ab6c13e728d6f3f0e17f2951370904f4ce9aad802731ebe57306f97e8bb7da4759881c2142f776cc705618fb
6
+ metadata.gz: d8f84c88dfd7847f01fc0a5f04c803e94106e0c73806443b884b91e3eecce830c20bb7844929cd2c918b58d37d673a4f9695e9d487fca6a0e667879aa5689595
7
+ data.tar.gz: ff371ee9763f58022bca659ad011a7709b5d58345ee06b8104407ca6f23f7d5c4348decbee031b7df58e61690a1afc296aa78681209c8712d97f8caa510c952e
@@ -1,31 +1,32 @@
1
- require 'active_support'
2
- require 'active_support/core_ext'
3
- require 'active_event/version'
4
-
5
- module ActiveEvent
6
- extend ActiveSupport::Autoload
7
-
8
- autoload :Autoload
9
- autoload :Command
10
- autoload :Domain
11
- autoload :EventServer
12
- autoload :EventSourceServer
13
- autoload :EventType
14
- autoload :ReplayServer
15
- autoload :SSE
16
- autoload :Validations
17
- autoload :ValidationsRegistry
18
-
19
- module Support
20
- extend ActiveSupport::Autoload
21
-
22
- autoload :AttrInitializer
23
- autoload :AttrSetter
24
- autoload :Autoload
25
- autoload :Autoloader
26
- autoload :MultiLogger
27
- end
28
-
29
- autoload :Event, (File.expand_path '../../app/models/active_event/event', __FILE__)
30
- autoload :EventRepository, (File.expand_path '../../app/models/active_event/event_repository', __FILE__)
31
- end
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
@@ -1,7 +1,7 @@
1
1
  module ActiveEvent
2
2
  # Returns the version of the currently loaded ActiveEvent as a Gem::Version
3
3
  def self.version
4
- Gem::Version.new '0.5.1'
4
+ Gem::Version.new '0.5.2'
5
5
  end
6
6
 
7
7
  module VERSION #:nodoc:
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.1
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-08 00:00:00.000000000 Z
11
+ date: 2014-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord