pwwka 0.4.1 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c9baec48081e67edd8da063e5b04f74e3656004a
4
- data.tar.gz: e850b99257c07387f29477baf365727db7d37a92
3
+ metadata.gz: f3fc992f47050fe4d47c782fd18224ea2b7224e3
4
+ data.tar.gz: ab6505f1e72cad5d540afc2974ecc5406998bfd8
5
5
  SHA512:
6
- metadata.gz: 916717f5f3582a56e5be142f2da3c0d2e5738101557bc47df00950823b1a5e398682f9157422798ec7afe74e57e2964f28602262da41a84098f2f0373a922d5e
7
- data.tar.gz: dcb622a925b2f3ab00eac8028f0699318235dbb4bdcb0d29bc32e286603091a905d9d34a061bb6d0c58ae1ca2c4331074fd96de2ee0ed128feb40e8132d7c497
6
+ metadata.gz: d0d3b3b3525731676f81ad2bfd591c6357887cc0f77e40f66114545462ef7dcd4ba672f8cbbf60eb8ac7aafb26a0eb5f77ce7f9b83df7f947393b45fc4dbdb32
7
+ data.tar.gz: ac7bcd1642cae8facd0f24305f777868b1da15681701d389836f3bcaa55c7abd7d270e0770f8c388fd03e38838c427d8cf19d5f60c04e2c54aa6ca22162f58c4
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - ruby-head
5
+ services:
6
+ - rabbitmq
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pwwka (0.4.1)
4
+ pwwka (0.4.2)
5
5
  activemodel
6
6
  activesupport
7
7
  bunny
@@ -10,10 +10,10 @@ PATH
10
10
  GEM
11
11
  remote: https://www.rubygems.org/
12
12
  specs:
13
- activemodel (4.2.0)
14
- activesupport (= 4.2.0)
13
+ activemodel (4.2.1)
14
+ activesupport (= 4.2.1)
15
15
  builder (~> 3.1)
16
- activesupport (4.2.0)
16
+ activesupport (4.2.1)
17
17
  i18n (~> 0.7)
18
18
  json (~> 1.7, >= 1.7.7)
19
19
  minitest (~> 5.1)
@@ -26,15 +26,15 @@ GEM
26
26
  diff-lcs (1.2.5)
27
27
  i18n (0.7.0)
28
28
  json (1.8.2)
29
- minitest (5.5.1)
29
+ minitest (5.6.1)
30
30
  mono_logger (1.1.0)
31
- multi_json (1.10.1)
31
+ multi_json (1.11.0)
32
32
  rack (1.6.0)
33
33
  rack-protection (1.5.3)
34
34
  rack
35
35
  rake (10.4.2)
36
- redis (3.2.0)
37
- redis-namespace (1.5.1)
36
+ redis (3.2.1)
37
+ redis-namespace (1.5.2)
38
38
  redis (~> 3.0, >= 3.0.4)
39
39
  resque (1.25.2)
40
40
  mono_logger (~> 1.0)
@@ -46,21 +46,21 @@ GEM
46
46
  rspec-core (~> 3.2.0)
47
47
  rspec-expectations (~> 3.2.0)
48
48
  rspec-mocks (~> 3.2.0)
49
- rspec-core (3.2.0)
49
+ rspec-core (3.2.2)
50
50
  rspec-support (~> 3.2.0)
51
51
  rspec-expectations (3.2.0)
52
52
  diff-lcs (>= 1.2.0, < 2.0)
53
53
  rspec-support (~> 3.2.0)
54
- rspec-mocks (3.2.0)
54
+ rspec-mocks (3.2.1)
55
55
  diff-lcs (>= 1.2.0, < 2.0)
56
56
  rspec-support (~> 3.2.0)
57
- rspec-support (3.2.1)
58
- sinatra (1.4.5)
57
+ rspec-support (3.2.2)
58
+ sinatra (1.4.6)
59
59
  rack (~> 1.4)
60
60
  rack-protection (~> 1.4)
61
- tilt (~> 1.3, >= 1.3.4)
62
- thread_safe (0.3.4)
63
- tilt (1.4.1)
61
+ tilt (>= 1.3, < 3)
62
+ thread_safe (0.3.5)
63
+ tilt (2.0.1)
64
64
  tzinfo (1.2.2)
65
65
  thread_safe (~> 0.1)
66
66
  vegas (0.1.11)
data/README.md CHANGED
@@ -6,7 +6,7 @@ Pronounced "Poo-ka" |ˈpo͞okə|
6
6
  ![Pwwka Legit](http://res.cloudinary.com/stitch-fix/image/upload/c_scale,h_300/v1413580920/pwwka_yuw7hl.png)
7
7
 
8
8
  ---
9
-
9
+ [![Build Status](https://travis-ci.org/stitchfix/pwwka.svg?branch=add_travis_yml)](https://travis-ci.org/stitchfix/pwwka)
10
10
 
11
11
  This gem connects to a topic exchange on a RabbitMQ server. It gives any app using it the ability to do two things:
12
12
 
data/lib/pwwka/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pwwka
2
- VERSION = '0.4.1'
2
+ VERSION = '0.4.2'
3
3
  end
data/pwwka.gemspec CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
7
7
  s.version = Pwwka::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ['Stitch Fix Engineering']
10
- s.email = ['eng@stitchfix.com']
11
- s.homepage = "http://www.stitchfix.com"
10
+ s.email = ['opensource@stitchfix.com']
11
+ s.homepage = "https://github.com/stitchfix/pwwka"
12
12
  s.summary = "Send and receive messages via RabbitMQ"
13
13
  s.description = "The purpose of this gem is to normalise the sending and
14
14
  receiving of messages between Rails apps using the shared RabbitMQ
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwwka
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stitch Fix Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-11 00:00:00.000000000 Z
11
+ date: 2015-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bunny
@@ -113,7 +113,7 @@ description: |-
113
113
  receiving of messages between Rails apps using the shared RabbitMQ
114
114
  message bus
115
115
  email:
116
- - eng@stitchfix.com
116
+ - opensource@stitchfix.com
117
117
  executables: []
118
118
  extensions: []
119
119
  extra_rdoc_files: []
@@ -121,6 +121,7 @@ files:
121
121
  - ".gitignore"
122
122
  - ".ruby-gemset"
123
123
  - ".ruby-version"
124
+ - ".travis.yml"
124
125
  - CONTRIBUTING.md
125
126
  - Gemfile
126
127
  - Gemfile.lock
@@ -149,7 +150,7 @@ files:
149
150
  - spec/receiver_spec.rb
150
151
  - spec/spec_helper.rb
151
152
  - spec/transmitter_spec.rb
152
- homepage: http://www.stitchfix.com
153
+ homepage: https://github.com/stitchfix/pwwka
153
154
  licenses: []
154
155
  metadata: {}
155
156
  post_install_message:
@@ -168,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
169
  version: '0'
169
170
  requirements: []
170
171
  rubyforge_project:
171
- rubygems_version: 2.2.0
172
+ rubygems_version: 2.4.1
172
173
  signing_key:
173
174
  specification_version: 4
174
175
  summary: Send and receive messages via RabbitMQ