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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -8
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 774dfff291167c04439b72e132f87cda4c8fd731
4
- data.tar.gz: ed3fdf0e0ec4f26d32cc7322855cc3d7864660f0
3
+ metadata.gz: be1f034455368bffa5d7a99cfa248ea5e0d20cdc
4
+ data.tar.gz: d53d753d4ad2377980793fa3034ba98ddfb9b7cc
5
5
  SHA512:
6
- metadata.gz: aa2032506e06d006f547819605996ab57a2be62626912df5e6a44fe4a95272db413aa45eff2e4b3cd85400cb79a7e507e11dec877a311ef1ec4b459a45e6b495
7
- data.tar.gz: 4f9a9c989603ec315a9e82cd389b785b272ae967dd4706e66ab3cc4fdad74ececc6eabec8d0717b4fc09ad4283e7a8df4869b0faa00a07359ce721e1343ff02f
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
- [![Gem Version](https://badge.fury.io/rb/msgr.png)](http://badge.fury.io/rb/msgr)
4
- [![Build Status](https://travis-ci.org/jgraichen/msgr.png?branch=master)](https://travis-ci.org/jgraichen/msgr)
5
- [![Coverage Status](https://coveralls.io/repos/jgraichen/msgr/badge.png?branch=master)](https://coveralls.io/r/jgraichen/msgr)
6
- [![Code Climate](https://codeclimate.com/github/jgraichen/msgr.png)](https://codeclimate.com/github/jgraichen/msgr)
7
- [![Dependency Status](https://gemnasium.com/jgraichen/msgr.png)](https://gemnasium.com/jgraichen/msgr)
8
- [![RubyDoc Documentation](https://raw.github.com/jgraichen/shields/master/rubydoc.png)](http://rubydoc.info/github/jgraichen/msgr/master/frames)
3
+
4
+ [![Gem Version](https://badge.fury.io/rb/msgr.svg)](http://badge.fury.io/rb/msgr)
5
+ [![Build Status](http://img.shields.io/travis/jgraichen/msgr/master.svg)](https://travis-ci.org/jgraichen/msgr)
6
+ [![Coverage Status](http://img.shields.io/coveralls/jgraichen/msgr/master.svg)](https://coveralls.io/r/jgraichen/msgr)
7
+ [![Code Climate](http://img.shields.io/codeclimate/github/jgraichen/msgr.svg)](https://codeclimate.com/github/jgraichen/msgr)
8
+ [![Dependency Status](http://img.shields.io/gemnasium/jgraichen/msgr.svg)](https://gemnasium.com/jgraichen/msgr)
9
+ [![RubyDoc Documentation](http://img.shields.io/badge/rubydoc-here-blue.svg)](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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: msgr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0.1.b129
4
+ version: 0.15.0.1.b131
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen