celluloid_pubsub_redis_adapter 0.0.2 → 0.1.0
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f88630904ea1a401a1d5c5997b40009da1b9614
|
4
|
+
data.tar.gz: 7528603d54385e8825d38910f49d7156e0c904c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d219adfc36f7c2c988b0c37acc6984c0f12f72ff595271cc6f4bbe6523ffed3dd9e1bb9eff245a91c7e1cf82439f7b38d149780b1f8a6cd86b7602b79cb4ccb5
|
7
|
+
data.tar.gz: 5456bceef8bca7b8dbf01d2a23ff4e931a611b252125389ddbdbb1c59e118ce34a06046b6a40d8ae2084fdbf0b914523216dbe56ca14187efd8702f4ca508a44
|
data/README.md
CHANGED
@@ -8,6 +8,8 @@ Description
|
|
8
8
|
|
9
9
|
CelluloidPubsubRedisAdapter is a simple ruby implementation of publish subscribe design patterns using celluloid actors and websockets, using Celluloid::Reel server and redis as a publish subscribe backend
|
10
10
|
|
11
|
+
Starting with version 0.1.0 , support for celluloid 0.17 was added
|
12
|
+
|
11
13
|
Requirements
|
12
14
|
------------
|
13
15
|
|
@@ -7,10 +7,7 @@ module CelluloidPubsub
|
|
7
7
|
# @!attribute connection
|
8
8
|
# @return [EM::Hiredis] The connection used for redis
|
9
9
|
class RedisReactor < CelluloidPubsub::Reactor
|
10
|
-
include
|
11
|
-
include Celluloid::IO
|
12
|
-
include Celluloid::Logger
|
13
|
-
include CelluloidPubsub::Helper
|
10
|
+
include CelluloidPubsub::BaseActor
|
14
11
|
|
15
12
|
attr_accessor :connected, :connection
|
16
13
|
|