celluloid_pubsub 0.0.2 → 0.0.3

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: 3600efeb6808046fa457b0db233e8637ba658d54
4
- data.tar.gz: 022b9276595a3e36374c34921dbb36dea8d10a56
3
+ metadata.gz: 1fc265ef17e9e49c65de3c4697c9c9951b2384b4
4
+ data.tar.gz: 6a047ed46c64f65dbe729a69082ddf682c2d97a3
5
5
  SHA512:
6
- metadata.gz: 7973185131ddc25cfa96414ecd4e34f169f68dff7ee84146b7d1c48799b40d4a0f02e35bc47143e51394423f5e3f5238e340ea7f411ca219312d1e0ffe094b29
7
- data.tar.gz: c9adee673a3961345b2d59b8b508ba93208174d4c4a9cb5908333402a4d3596e4697296e79460eb130e9729b5ba3ef43131cd8e7a86db1c68ca7e880b215d8ab
6
+ metadata.gz: b2a3d1ec81691c4b016d6b1fa5e33e2c962ad65fe2f9c527d57be866abb138e65b726522c257d2e73c7c6ef51810b74cf0e9fa954f5d262abfab180c84049437
7
+ data.tar.gz: df5243356a51c1fe2576517791d40f238d2a2e350fa080d7c217941608cbec3a2443bb0a2f621df6ac4d8a0458985e0d2c2294f74f783b45d482c45e0e05610e
data/.coveralls.yml CHANGED
@@ -1,2 +1,2 @@
1
1
  service_name: travis-ci
2
- repo_token:
2
+ repo_token: 8c9edNJkEV8BFTLrfU11md2H4FsSEPT9b
data/README.rdoc CHANGED
@@ -1,4 +1,11 @@
1
- = celluloid_pubsub
1
+ = celluloid_pubsub {<img src="https://badge.fury.io/rb/celluloid_pubsub.png" alt="Gem Version" />}[http://badge.fury.io/rb/celluloid_pubsub]
2
+ {<img src="https://travis-ci.org/bogdanRada/celluloid_pubsub.png?branch=master,develop" />}[https://travis-ci.org/bogdanRada/celluloid_pubsub]
3
+ {<img src="https://www.versioneye.com/user/projects/52fc7297ec1375346600007d/badge.svg?style=flat" alt="Dependency Status" />}[https://www.versioneye.com/user/projects/52fc7297ec1375346600007d]
4
+ {<img src="https://coveralls.io/repos/bogdanRada/celluloid_pubsub/badge.png?branch=master" alt="Coverage Status" />}[https://coveralls.io/r/bogdanRada/celluloid_pubsub?branch=master]
5
+ {<img src="https://codeclimate.com/github/bogdanRada/celluloid_pubsub.png" />}[https://codeclimate.com/github/bogdanRada/celluloid_pubsub]
6
+ {<img src="https://reposs.herokuapp.com/?path=bogdanRada/celluloid_pubsub" alt="Repo Size"/>}[https://github.com/bogdanRada/celluloid_pubsub]
7
+ {<img src="https://ruby-gem-downloads-badge.herokuapp.com/celluloid_pubsub?type=total&style=dynamic" alt="Gem Downloads"/>}[https://rubygems.org/gems/celluloid_pubsub]
8
+ {<img src="http://stillmaintained.com/bogdanRada/celluloid_pubsub.png" alt=""/>}[https://rubygems.org/gems/celluloid_pubsub]
2
9
 
3
10
  = Overview
4
11
  CelluloidPubsub is a simple ruby implementation of publish subscribe design patterns using celluloid actors and websockets, using Celluloid::Reel server
@@ -66,7 +73,7 @@ Please read {release details}[https://github.com/bogdanRada/celluloid_pubsub/rel
66
73
  CelluloidPubsub::WebServer.supervise_as(:web_server)
67
74
  Subscriber.supervise_as(:subscriber)
68
75
  Publisher.supervise_as(:publisher)
69
-
76
+ sleep
70
77
 
71
78
  = Testing
72
79
 
@@ -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 = 2
9
+ TINY = 3
10
10
  PRE = nil
11
11
 
12
12
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada