celluloid_pubsub 0.7.0 → 0.7.1

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: 0f998246dbe87fcedc0e697fd863dc8cb4c0a905
4
- data.tar.gz: 04834e2e23f0cb946992bcd7bf76133a448c69bf
3
+ metadata.gz: b01b0bb09c838469ce9953a16e1347b73e3a7a8c
4
+ data.tar.gz: 6b56c60866f2204dae9245e5b99ae95742fb480a
5
5
  SHA512:
6
- metadata.gz: 04af564aa19cba0cfb5cd6591d23825c7e44ce63e2f7e22a0f1bfddce2c6dbbc3aef28b144bd1c625c35e321e77b24c3d21b89fbc234fa8506f6f2cd46e2394f
7
- data.tar.gz: 51ef6c1817146611d0bf047747d95f5acbc252217ad4886fa149f8e22d21dc58f36da2ac52f8b541a5c1e5d12bea0abe06f4ab82d9e32233c219116ccbbe2d23
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
@@ -17,7 +17,7 @@ module CelluloidPubsub
17
17
  # minor release version
18
18
  MINOR = 7
19
19
  # tiny release version
20
- TINY = 0
20
+ TINY = 1
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
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada