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: 5f56e63802c61a51b8209bd96cf5fc09557feeba
4
- data.tar.gz: ba0c55282f5fdaac1fcc977c45aa6a5cee2731aa
3
+ metadata.gz: 4f88630904ea1a401a1d5c5997b40009da1b9614
4
+ data.tar.gz: 7528603d54385e8825d38910f49d7156e0c904c0
5
5
  SHA512:
6
- metadata.gz: af42ded37afb0f304c77c51310fa241e3c68ed2456be06d28fc39d3270d3b530a7da8a62793d1911d7f123fde970cac10e9853755af7c0f96ed3bffc4b2a80ce
7
- data.tar.gz: 0731080f6ce9fc15cd10b7f456ec893f73e95dec4fe2a8f8e9289d04a2270c7d207b971f035f1f9fe64630ca6037056297fefaaf81c6a8da2481a40ec86c6326
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 Celluloid
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
 
@@ -15,9 +15,9 @@ module CelluloidPubsubRedisAdapter
15
15
  # major release version
16
16
  MAJOR = 0
17
17
  # minor release version
18
- MINOR = 0
18
+ MINOR = 1
19
19
  # tiny release version
20
- TINY = 2
20
+ TINY = 0
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: celluloid_pubsub_redis_adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada