action_subscriber 1.1.0.pre.rc1 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/Gemfile +6 -0
- data/README.md +7 -5
- data/action_subscriber.gemspec +1 -2
- data/lib/action_subscriber/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1695f4f608496ca1f5032a65162ea5336e93971
|
4
|
+
data.tar.gz: 26da07204de5366ae6ec142c6fdd7fc605fd05c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35c1fb75fd1c0ee206c0845d8c0f0d09fe15b67ba93175cf290ed4e59d6adf55fe728635bc964ab3e24022c95aff298ab33c1d6f392d5f6206e98aeaa5dc57d0
|
7
|
+
data.tar.gz: 9c4f23eb00dbc8d877849b5cdef933824506e0204e2210a35ead55c0132c0ce4f9526efb75ada0d2cbe8405a5541675b1e29bde3581c465b47fe2815b7d788f9
|
data/.travis.yml
CHANGED
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/
|
2
|
-
[![Code Climate](https://codeclimate.com/github/
|
3
|
-
[![Dependency Status](https://gemnasium.com/
|
4
|
-
[![Join the chat at https://gitter.im/
|
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.
|
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
|
-----------------
|
data/action_subscriber.gemspec
CHANGED
@@ -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/
|
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
|
|
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.
|
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-
|
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/
|
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: '
|
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:
|
244
|
+
version: '0'
|
245
245
|
requirements: []
|
246
246
|
rubyforge_project:
|
247
247
|
rubygems_version: 2.4.8
|