celluloid_pubsub 0.0.3 → 0.0.4

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: 1fc265ef17e9e49c65de3c4697c9c9951b2384b4
4
- data.tar.gz: 6a047ed46c64f65dbe729a69082ddf682c2d97a3
3
+ metadata.gz: cfd94f2ae6742d88a6847c707e244a04c79d225a
4
+ data.tar.gz: d23c662ad9624501050fd26bd2090838d05e7c29
5
5
  SHA512:
6
- metadata.gz: b2a3d1ec81691c4b016d6b1fa5e33e2c962ad65fe2f9c527d57be866abb138e65b726522c257d2e73c7c6ef51810b74cf0e9fa954f5d262abfab180c84049437
7
- data.tar.gz: df5243356a51c1fe2576517791d40f238d2a2e350fa080d7c217941608cbec3a2443bb0a2f621df6ac4d8a0458985e0d2c2294f74f783b45d482c45e0e05610e
6
+ metadata.gz: 48c469b58c12d9b646eae41b1e441e965f139b49bea1789c10f1472eb22ca05ab3ce8af69e3f9fc63c7bf81822a6c1899262d8078c973f88beb76e0f34277d5a
7
+ data.tar.gz: 81fd191f91fae69aca22dd833208071e80541659b7675608b6a2130ea50d5f35840616b09b7d72239f7d073473807ade86cc430ae38f8483e2c75e5cb8cf2993
@@ -3,7 +3,7 @@ module CelluloidPubsub
3
3
  class PubSubWorker
4
4
  include Celluloid
5
5
  include Celluloid::Logger
6
- attr_reader :proc, :topic, :message
6
+ attr_accessor :actor, :connect_blk, :cllient
7
7
 
8
8
  def initialize(options, &connect_blk)
9
9
  options = options.stringify_keys!
@@ -6,7 +6,7 @@ module CelluloidPubsub # Returns the version of the currently loaded Rails as a
6
6
  module VERSION
7
7
  MAJOR = 0
8
8
  MINOR = 0
9
- TINY = 3
9
+ TINY = 4
10
10
  PRE = nil
11
11
 
12
12
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -7,7 +7,7 @@ module CelluloidPubsub
7
7
  PORT = 1234
8
8
  PATH = '/ws'
9
9
 
10
- attr_accessor :options, :subscribers, :backlog
10
+ attr_accessor :options, :subscribers, :backlog, :hostname, :port, :path, :spy
11
11
 
12
12
  def initialize(options = {})
13
13
  parse_options(options)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: celluloid_pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada