msgr 0.15.0.1.b129 → 0.15.0.1.b131
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/README.md +9 -8
- 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: be1f034455368bffa5d7a99cfa248ea5e0d20cdc
|
|
4
|
+
data.tar.gz: d53d753d4ad2377980793fa3034ba98ddfb9b7cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a53919e9fd738eca5b79335942308f631a28f2c99869f127a62e37b19de28aaeef7e9bc6a6a9a3618c671bbae6324655b58342bcf05e8077f3a624effe19632
|
|
7
|
+
data.tar.gz: 6bb708eec36085a4e3feca0ad2dacaab50830cb3223465bd4b459e6bc86ad0cb485f3e0a267764390ee654306a48a6aecf738e5b2f3614741fdd0f5251c2b73e
|
data/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Msgr: *Rails-like Messaging Framework*
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](http://badge.fury.io/rb/msgr)
|
|
5
|
+
[](https://travis-ci.org/jgraichen/msgr)
|
|
6
|
+
[](https://coveralls.io/r/jgraichen/msgr)
|
|
7
|
+
[](https://codeclimate.com/github/jgraichen/msgr)
|
|
8
|
+
[](https://gemnasium.com/jgraichen/msgr)
|
|
9
|
+
[](http://rubydoc.info/github/jgraichen/msgr/master/frames)
|
|
9
10
|
|
|
10
11
|
You know it and you like it. Using Rails you can just declare your routes and
|
|
11
12
|
create a controller. That's all you need to process requests.
|
|
@@ -130,10 +131,10 @@ before { Msgr.client.start }
|
|
|
130
131
|
it 'executes the consumer' do
|
|
131
132
|
# Publish an event on our queue
|
|
132
133
|
Msgr.publish 'payload', to: 'msgr.queue.my_queue'
|
|
133
|
-
|
|
134
|
+
|
|
134
135
|
# Let the TestPool handle exactly one event
|
|
135
136
|
Msgr::TestPool.run count: 1
|
|
136
|
-
|
|
137
|
+
|
|
137
138
|
# And finally, assert that something happened
|
|
138
139
|
expect(actual).to eq expected
|
|
139
140
|
end
|