action_subscriber 1.1.0.pre.rc1 → 1.1.1

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: f77a36e1a04e5e4e0be54248a418d4eea74c10fc
4
- data.tar.gz: 1b094fd2054c8edc024b0cf3079fcc78f1ec5ffb
3
+ metadata.gz: d1695f4f608496ca1f5032a65162ea5336e93971
4
+ data.tar.gz: 26da07204de5366ae6ec142c6fdd7fc605fd05c7
5
5
  SHA512:
6
- metadata.gz: 39bf93b5f919cff9f69a9be158c39f627c18fd309e6ec91dc6fa16a4a3e87bc763b6399f7b59ecfbdb4bd6a604db97c943a4917f8cfe79d7fb698a228c849a31
7
- data.tar.gz: 5298c6116af9baa4819949bbef600e47948c8b055bbbeab5ff333c1ae851405a7e0fc4f61ba4ae45da7563cbc3e86dd23015bb8697ab2da854d47689273ebe6a
6
+ metadata.gz: 35c1fb75fd1c0ee206c0845d8c0f0d09fe15b67ba93175cf290ed4e59d6adf55fe728635bc964ab3e24022c95aff298ab33c1d6f392d5f6206e98aeaa5dc57d0
7
+ data.tar.gz: 9c4f23eb00dbc8d877849b5cdef933824506e0204e2210a35ead55c0132c0ce4f9526efb75ada0d2cbe8405a5541675b1e29bde3581c465b47fe2815b7d788f9
@@ -1,10 +1,11 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 1.9
3
4
  - 2.0
4
5
  - 2.1
5
6
  - 2.2
6
- - jruby
7
7
  - jruby-1.7
8
+ - jruby-9.0.1.0
8
9
  - jruby-head
9
10
  - rbx-2
10
11
  services:
data/Gemfile CHANGED
@@ -2,3 +2,9 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in action_subscriber.gemspec
4
4
  gemspec
5
+
6
+ if RUBY_ENGINE == "ruby" && RUBY_VERSION.split(".").first.to_i < 2
7
+ # MRI 1.9 requires older versions of bunny + amq-protocol
8
+ gem 'amq-protocol', '< 2.0.0'
9
+ gem 'bunny', '< 2.0.0'
10
+ end
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
- [![Build Status](https://travis-ci.org/moneydesktop/action_subscriber.svg?branch=master)](https://travis-ci.org/moneydesktop/action_subscriber)
2
- [![Code Climate](https://codeclimate.com/github/moneydesktop/action_subscriber/badges/gpa.svg)](https://codeclimate.com/github/moneydesktop/action_subscriber)
3
- [![Dependency Status](https://gemnasium.com/moneydesktop/action_subscriber.svg)](https://gemnasium.com/moneydesktop/action_subscriber)
4
- [![Join the chat at https://gitter.im/moneydesktop/action_subscriber](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/moneydesktop/action_subscriber?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1
+ [![Build Status](https://travis-ci.org/mxenabled/action_subscriber.svg?branch=master)](https://travis-ci.org/mxenabled/action_subscriber)
2
+ [![Code Climate](https://codeclimate.com/github/mxenabled/action_subscriber/badges/gpa.svg)](https://codeclimate.com/github/mxenabled/action_subscriber)
3
+ [![Dependency Status](https://gemnasium.com/mxenabled/action_subscriber.svg)](https://gemnasium.com/mxenabled/action_subscriber)
4
+ [![Join the chat at https://gitter.im/mxenabled/action_subscriber](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mxenabled/action_subscriber?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5
5
 
6
6
  ActionSubscriber
7
7
  =================
@@ -9,7 +9,9 @@ ActionSubscriber is a DSL for for easily intergrating your Rails app with a Rabb
9
9
 
10
10
  Requirements
11
11
  -----------------
12
- I test on Ruby 2.1.1 and Jruby 1.7.x. Ruby 1.8 is not supported.
12
+ I test on Ruby 2.2.1 and Jruby 9.x. MRI 1.9 and jRuby 1.7 are still supported.
13
+
14
+ If you want to use MRI 1.9 you will need to lock down the `amq-protocol` and `bunny` gems to `< 2.0` since they both require ruby 2.0+.
13
15
 
14
16
  Supported Message Types
15
17
  -----------------
@@ -10,14 +10,13 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["brianastien@gmail.com","liveh2o@gmail.com","brandonsdewitt@gmail.com","quixoten@gmail.com","michael@riesd.com"]
11
11
  spec.description = %q{ActionSubscriber is a DSL that allows a rails app to consume messages from a RabbitMQ broker.}
12
12
  spec.summary = %q{ActionSubscriber is a DSL that allows a rails app to consume messages from a RabbitMQ broker.}
13
- spec.homepage = "https://github.com/moneydesktop/action_subscriber"
13
+ spec.homepage = "https://github.com/mxenabled/action_subscriber"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
- spec.required_ruby_version = Gem::Requirement.new(">= 2.0")
21
20
 
22
21
  spec.add_dependency 'activesupport', '>= 3.2'
23
22
 
@@ -1,3 +1,3 @@
1
1
  module ActionSubscriber
2
- VERSION = "1.1.0-rc1"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_subscriber
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.pre.rc1
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Stien
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2015-09-17 00:00:00.000000000 Z
15
+ date: 2015-09-25 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activesupport
@@ -224,7 +224,7 @@ files:
224
224
  - spec/lib/action_subscriber/threadpool_spec.rb
225
225
  - spec/spec_helper.rb
226
226
  - spec/support/user_subscriber.rb
227
- homepage: https://github.com/moneydesktop/action_subscriber
227
+ homepage: https://github.com/mxenabled/action_subscriber
228
228
  licenses:
229
229
  - MIT
230
230
  metadata: {}
@@ -236,12 +236,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
236
236
  requirements:
237
237
  - - ">="
238
238
  - !ruby/object:Gem::Version
239
- version: '2.0'
239
+ version: '0'
240
240
  required_rubygems_version: !ruby/object:Gem::Requirement
241
241
  requirements:
242
- - - ">"
242
+ - - ">="
243
243
  - !ruby/object:Gem::Version
244
- version: 1.3.1
244
+ version: '0'
245
245
  requirements: []
246
246
  rubyforge_project:
247
247
  rubygems_version: 2.4.8