event_horizon 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/event_horizon.gemspec +1 -1
- data/lib/event_horizon.rb +0 -3
- data/lib/event_horizon/orm_support.rb +0 -3
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/event_horizon.gemspec
CHANGED
data/lib/event_horizon.rb
CHANGED
@@ -5,14 +5,11 @@ require 'event_horizon/events'
|
|
5
5
|
require 'event_horizon/orm_support'
|
6
6
|
require 'event_horizon/helpers'
|
7
7
|
|
8
|
-
require 'event_horizon/mongoid_support/document' if defined?(::Mongoid)
|
9
|
-
|
10
8
|
|
11
9
|
module EventHorizon
|
12
10
|
|
13
11
|
extend ActiveSupport::Concern
|
14
12
|
|
15
13
|
include Events
|
16
|
-
include EventHorizon::MongoidSupport::Document if defined?(::Mongoid)
|
17
14
|
|
18
15
|
end
|