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 +4 -4
- data/.coveralls.yml +1 -1
- data/README.rdoc +9 -2
- data/lib/celluloid_pubsub/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fc265ef17e9e49c65de3c4697c9c9951b2384b4
|
|
4
|
+
data.tar.gz: 6a047ed46c64f65dbe729a69082ddf682c2d97a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|