celluloid_pubsub 0.0.21 → 0.0.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +35 -52
- data/celluloid_pubsub.gemspec +1 -0
- data/lib/celluloid_pubsub/version.rb +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe9b479edc8ae87669502df2e243351d4e1ed661
|
4
|
+
data.tar.gz: 9334f13ffee94e5a64a849a079fdea00883e1964
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c27edb339198ab3c647ae1421be96d3a1df46db3675907a8003d376d9176eafc8a0c17ef94235301c7ca19e0e18025f79cdc593346f205a20e0419d4f418152b
|
7
|
+
data.tar.gz: 208896557d1b7f8fe364a721bf9a49460853754470d491426d61fe067c03cb1a768632235d4066a98b9e1a8ebf7ac5faee8c927144e03296df90b3a762010220
|
data/README.md
CHANGED
@@ -1,38 +1,25 @@
|
|
1
1
|
celluloid_pubsub
|
2
|
-
|
2
|
+
================
|
3
3
|
|
4
|
-
|
5
|
-
[![Gem Version](https://badge.fury.io/rb/celluloid_pubsub.svg)](http://badge.fury.io/rb/celluloid_pubsub)
|
6
|
-
[![Build Status](https://travis-ci.org/bogdanRada/celluloid_pubsub.png?branch=master,develop)](https://travis-ci.org/bogdanRada/celluloid_pubsub)
|
7
|
-
[![Coverage Status](https://coveralls.io/repos/bogdanRada/celluloid_pubsub/badge.svg?branch=master)](https://coveralls.io/r/bogdanRada/celluloid_pubsub?branch=master)
|
8
|
-
[![Code Climate](https://codeclimate.com/github/bogdanRada/celluloid_pubsub/badges/gpa.svg)](https://codeclimate.com/github/bogdanRada/celluloid_pubsub)
|
9
|
-
[![Repo Size](https://reposs.herokuapp.com/?path=bogdanRada/celluloid_pubsub)](https://github.com/bogdanRada/celluloid_pubsub)
|
10
|
-
[![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/celluloid_pubsub?type=total&style=dynamic)](https://github.com/bogdanRada/celluloid_pubsub)
|
11
|
-
[![Documentation Status](https://inch-ci.org/github/bogdanRada/celluloid_pubsub.svg?branch=master)](https://inch-ci.org/github/bogdanRada/celluloid_pubsubb)
|
12
|
-
[![Maintenance Status](http://stillmaintained.com/bogdanRada/celluloid_pubsub.png)](https://github.com/bogdanRada/celluloid_pubsub)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/celluloid_pubsub.svg)](http://badge.fury.io/rb/celluloid_pubsub) [![Build Status](https://travis-ci.org/bogdanRada/celluloid_pubsub.png?branch=master,develop)](https://travis-ci.org/bogdanRada/celluloid_pubsub) [![Coverage Status](https://coveralls.io/repos/bogdanRada/celluloid_pubsub/badge.svg?branch=master)](https://coveralls.io/r/bogdanRada/celluloid_pubsub?branch=master) [![Code Climate](https://codeclimate.com/github/bogdanRada/celluloid_pubsub/badges/gpa.svg)](https://codeclimate.com/github/bogdanRada/celluloid_pubsub) [![Repo Size](https://reposs.herokuapp.com/?path=bogdanRada/celluloid_pubsub)](https://github.com/bogdanRada/celluloid_pubsub) [![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/celluloid_pubsub?type=total&style=dynamic)](https://github.com/bogdanRada/celluloid_pubsub) [![Documentation Status](https://inch-ci.org/github/bogdanRada/celluloid_pubsub.svg?branch=master)](https://inch-ci.org/github/bogdanRada/celluloid_pubsubb) [![Maintenance Status](http://stillmaintained.com/bogdanRada/celluloid_pubsub.png)](https://github.com/bogdanRada/celluloid_pubsub)
|
13
5
|
|
14
6
|
Description
|
15
|
-
|
7
|
+
-----------
|
8
|
+
|
16
9
|
CelluloidPubsub is a simple ruby implementation of publish subscribe design patterns using celluloid actors and websockets, using Celluloid::Reel server
|
17
10
|
|
18
11
|
Requirements
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
[ruby]: http://www.ruby-lang.org
|
28
|
-
[celluloid]: https://github.com/celluloid/celluloid
|
29
|
-
[celluloid-io]: https://github.com/celluloid/celluloid-io
|
30
|
-
[reel]: https://github.com/celluloid/reel
|
31
|
-
[celluloid-websocket-client]: https://github.com/jeremyd/celluloid-websocket-client
|
32
|
-
[activesupport]:https://rubygems.org/gems/activesupport
|
12
|
+
------------
|
13
|
+
|
14
|
+
1. [Ruby 1.9.x or Ruby 2.x.x](http://www.ruby-lang.org)
|
15
|
+
2. [Celluloid >= 0.16.0](https://github.com/celluloid/celluloid)
|
16
|
+
3. [Celluloid-IO >= 0.16.2](https://github.com/celluloid/celluloid-io)
|
17
|
+
4. [Reel >= 0.5.0](https://github.com/celluloid/reel)
|
18
|
+
5. [Celluloid-websocket-client = 0.0.1](https://github.com/jeremyd/celluloid-websocket-client)
|
19
|
+
6. [ActiveSuport >= 4.2.0](https://rubygems.org/gems/activesupport)
|
33
20
|
|
34
21
|
Compatibility
|
35
|
-
|
22
|
+
-------------
|
36
23
|
|
37
24
|
Rails >3.0 only. MRI 1.9.x, 2.x, JRuby (--1.9).
|
38
25
|
|
@@ -41,50 +28,46 @@ Ruby 1.8 is not officially supported. We will accept further compatibilty pull-r
|
|
41
28
|
Rubinius support temporarily dropped due to Rails 4 incompatibility.
|
42
29
|
|
43
30
|
Installation Instructions
|
44
|
-
|
31
|
+
-------------------------
|
45
32
|
|
46
33
|
Add the following to your Gemfile:
|
47
|
-
|
34
|
+
|
48
35
|
```ruby
|
49
36
|
gem "celluloid_pubsub"
|
50
37
|
```
|
51
|
-
|
52
|
-
[
|
38
|
+
|
39
|
+
Please read [Release Details](https://github.com/bogdanRada/celluloid_pubsub/releases) if you are upgrading. We break backward compatibility between large ticks but you can expect it to be specified at release notes.
|
53
40
|
|
54
41
|
Examples
|
55
42
|
--------
|
56
|
-
Please check the [Examples Folder][examples]. There you can find some basic examples.
|
57
43
|
|
58
|
-
[
|
59
|
-
|
60
|
-
|
61
|
-
|
44
|
+
Please check the [Examples Folder](https://github.com/bogdanRada/celluloid_pubsub/tree/master/examples). There you can find some basic examples.
|
45
|
+
|
46
|
+
Testing
|
47
|
+
-------
|
62
48
|
|
63
49
|
To test, do the following:
|
64
50
|
|
65
|
-
1.
|
66
|
-
2.
|
67
|
-
3.
|
51
|
+
1. cd to the gem root.
|
52
|
+
2. bundle install
|
53
|
+
3. bundle exec rake
|
68
54
|
|
69
55
|
Contributions
|
70
|
-
|
71
|
-
|
72
|
-
Please log all feedback/issues via [Github Issues][issues]. Thanks.
|
56
|
+
-------------
|
73
57
|
|
74
|
-
[
|
58
|
+
Please log all feedback/issues via [Github Issues](http://github.com/bogdanRada/celluloid_pubsub/issues). Thanks.
|
75
59
|
|
76
60
|
Contributing to celluloid_pubsub
|
77
|
-
|
61
|
+
--------------------------------
|
78
62
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
63
|
+
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
64
|
+
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
65
|
+
- Fork the project.
|
66
|
+
- Start a feature/bugfix branch.
|
67
|
+
- Commit and push until you are happy with your contribution.
|
68
|
+
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
69
|
+
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
86
70
|
|
87
71
|
== Copyright
|
88
72
|
|
89
|
-
Copyright (c) 2015 bogdanRada. See LICENSE.txt for
|
90
|
-
further details.
|
73
|
+
Copyright (c) 2015 bogdanRada. See LICENSE.txt for further details.
|
data/celluloid_pubsub.gemspec
CHANGED
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.add_runtime_dependency 'celluloid', '~> 0.16', '~> 0.16.0'
|
20
20
|
s.add_runtime_dependency 'celluloid-io', '~> 0.16', '>= 0.16.2'
|
21
21
|
s.add_runtime_dependency 'reel', '~> 0.5', '>= 0.5.0'
|
22
|
+
s.add_runtime_dependency 'http', '~> 0.9.8', '>= 0.9.8' # TODO: remove this once fixed in reel gem
|
22
23
|
s.add_runtime_dependency 'celluloid-websocket-client', '0.0.1'
|
23
24
|
s.add_runtime_dependency 'activesupport', '~> 4.1', '>= 4.1.0'
|
24
25
|
|
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.0.
|
4
|
+
version: 0.0.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bogdanRada
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: celluloid
|
@@ -70,6 +70,26 @@ dependencies:
|
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 0.5.0
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: http
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - "~>"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 0.9.8
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.9.8
|
83
|
+
type: :runtime
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.9.8
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 0.9.8
|
73
93
|
- !ruby/object:Gem::Dependency
|
74
94
|
name: celluloid-websocket-client
|
75
95
|
requirement: !ruby/object:Gem::Requirement
|