celluloid_pubsub 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/celluloid_pubsub/base_actor.rb +4 -4
- data/lib/celluloid_pubsub/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b01b0bb09c838469ce9953a16e1347b73e3a7a8c
|
4
|
+
data.tar.gz: 6b56c60866f2204dae9245e5b99ae95742fb480a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be0755130664db5e620c9631157565db6fc4f660875a6d95f58a432234b42f46962b8a324a858e82c7c92115fe0650f1173cda3ca4f535f97fde8c6ee71af18a
|
7
|
+
data.tar.gz: 200eaaa7d8884ca60bc7f0b6f9e67d90d246df7e3bae09ec537f34a854cb45fe7faf97d00ad6fb5f3eb90bf744259798a2b99ce311b78523e742f97adca35632
|
@@ -8,10 +8,10 @@ module CelluloidPubsub
|
|
8
8
|
attr_reader :config
|
9
9
|
|
10
10
|
def included(base)
|
11
|
-
base.include Celluloid
|
12
|
-
base.include Celluloid::IO
|
13
|
-
base.include CelluloidPubsub::Helper
|
14
|
-
base.include config['logger_class']
|
11
|
+
base.send(:include, Celluloid)
|
12
|
+
base.send(:include, Celluloid::IO)
|
13
|
+
base.send(:include, CelluloidPubsub::Helper)
|
14
|
+
base.send(:include, config['logger_class'])
|
15
15
|
end
|
16
16
|
|
17
17
|
def config
|