rbkubemq 0.0.1 → 0.0.2
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/RBKubeMQ.gemspec +2 -2
- data/README.md +8 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 037bd6fcea0ed99f88688ec9ac7c34f71425fba22655b1dfd283f3c30428c0f2
|
|
4
|
+
data.tar.gz: 2c63229009a6e41367d013568ea7de34b31fe2829109765758bc88d498009e2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35f0b187dbcac8eeaac2a533a45aacac2ff01baccd34844334a7cdeee3491c31f054c14f6b40b04746c75d3e7e1c0feac97a1d000b7bad0fec0163f9a7bab1a4
|
|
7
|
+
data.tar.gz: 92e823ed208562b20e59702341c37d23256123e221751ca83dacf0e88f110eb3983fdc9cba2bf1c8d14d2fd6fe39fa0fec406287cc0078c4f5af03751b4a3e64
|
data/RBKubeMQ.gemspec
CHANGED
|
@@ -4,10 +4,10 @@ require "rake"
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'rbkubemq'
|
|
7
|
-
s.version = '0.0.
|
|
7
|
+
s.version = '0.0.2'
|
|
8
8
|
s.authors = ['Stefano Martin']
|
|
9
9
|
s.email = ['stefano@seluxit.com']
|
|
10
|
-
s.homepage = 'https://github.com/
|
|
10
|
+
s.homepage = 'https://github.com/Seluxit/RBKubeMQ'
|
|
11
11
|
s.license = 'MIT'
|
|
12
12
|
s.summary = 'A simple gem for KubeMQ'
|
|
13
13
|
s.description = "Ruby driver for RBKubeMQ"
|
data/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
RBKubeMQ [](https://badge.fury.io/rb/rbkubemq)
|
|
2
|
+
==============================
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
To install ArangoRB: `gem install RBKubeMQ`.
|
|
4
|
+
This is a quick gem created to manage [KubeMQ](https://kubemq.io/) with Ruby.
|
|
6
5
|
|
|
7
|
-
To
|
|
8
|
-
|
|
9
|
-
For examples, look the tests in "/spec/lib/spec_helper"
|
|
6
|
+
To install ArangoRB: `gem install RBKubeMQ`
|
|
7
|
+
To use it in your application: `require rbkubemq`
|
|
8
|
+
For examples, look the tests in "/spec/lib/spec_helper".
|
|
9
|
+
It requires the gems "HTTParty", "Oj" and "faye-websocket".
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Used classes
|
|
12
12
|
|
|
13
13
|
* [RBKubeMQ::Client](#RKMQCLient): to manage a general client
|
|
14
14
|
* [RBKubeMQ::Sender](#RKMQSender): to manage a sender
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbkubemq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefano Martin
|
|
@@ -89,7 +89,7 @@ files:
|
|
|
89
89
|
- lib/sender.rb
|
|
90
90
|
- lib/streamer.rb
|
|
91
91
|
- lib/subscriber.rb
|
|
92
|
-
homepage: https://github.com/
|
|
92
|
+
homepage: https://github.com/Seluxit/RBKubeMQ
|
|
93
93
|
licenses:
|
|
94
94
|
- MIT
|
|
95
95
|
metadata: {}
|