celluloid_pubsub 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b01b0bb09c838469ce9953a16e1347b73e3a7a8c
4
- data.tar.gz: 6b56c60866f2204dae9245e5b99ae95742fb480a
3
+ metadata.gz: 4602cc41d0023cf0f3674588b59077b4d0a6ab3d
4
+ data.tar.gz: 475990fe6bf2c47e3f0ccd9b88a6e28a76371b7a
5
5
  SHA512:
6
- metadata.gz: be0755130664db5e620c9631157565db6fc4f660875a6d95f58a432234b42f46962b8a324a858e82c7c92115fe0650f1173cda3ca4f535f97fde8c6ee71af18a
7
- data.tar.gz: 200eaaa7d8884ca60bc7f0b6f9e67d90d246df7e3bae09ec537f34a854cb45fe7faf97d00ad6fb5f3eb90bf744259798a2b99ce311b78523e742f97adca35632
6
+ metadata.gz: 19c2dcaaddd90e65274b01b22e8808765df8c0ddba1540c757b7b925d2b5e84411e2cded8f30d124c95c4fc521ddc9442211ae56cb23ca9320680c112e48b776
7
+ data.tar.gz: 3c7f4db5406717eefd782bac8ab629a4bbf3fc515c595caff14c422d0732ac4e87b4963634637395383109844532393f54562d79147117db4826ffa860f7b66f
data/README.md CHANGED
@@ -67,7 +67,6 @@ Creating a client is simple as doing this. If you provide the channel when you i
67
67
  ```ruby
68
68
  class MyAwesomeClient
69
69
  include Celluloid
70
- include Celluloid::Logger
71
70
 
72
71
  def initialize(options = {})
73
72
  @client = CelluloidPubsub::Client.new({
@@ -12,7 +12,7 @@ module CelluloidPubsub
12
12
  #
13
13
  # @!attribute channels
14
14
  # @return [Array] array of channels to which the current reactor has subscribed to
15
- class Reactor
15
+ class Reactor
16
16
  include CelluloidPubsub::BaseActor
17
17
 
18
18
  attr_accessor :websocket, :server, :channels
@@ -70,7 +70,7 @@ module CelluloidPubsub
70
70
  # :nocov:
71
71
  def try_read_websocket
72
72
  @websocket.closed? ? nil : @websocket.read
73
- rescue Reel::SocketError
73
+ rescue
74
74
  nil
75
75
  end
76
76
 
@@ -17,7 +17,7 @@ module CelluloidPubsub
17
17
  # minor release version
18
18
  MINOR = 7
19
19
  # tiny release version
20
- TINY = 1
20
+ TINY = 2
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: celluloid_pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-02 00:00:00.000000000 Z
11
+ date: 2016-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid