action_subscriber 1.1.0.pre.rc1-java → 1.1.1-java
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/.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: e32c3b5817aba153c54f3fcbadaa3091f8b64f64
|
4
|
+
data.tar.gz: 22f1904111089d88355560514e9e950a3a945e81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c4506c7523b167c80b3e8b5fd3461d756b178484fca2cc9d063047ab02fdfc3bb6d6d7b06c35d3606990050906257cfc918a79fb206089b13c0f7c2f1af10cd
|
7
|
+
data.tar.gz: d883ce7283959c1b5670704d07bf9334110b09e68dd8f15e2e2574fd5afe30dd97187c29a8defe2c6e88b36c4a08674ceff44a0d1f0209186353378c99909782
|
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
|
-
[](https://travis-ci.org/mxenabled/action_subscriber)
|
2
|
+
[](https://codeclimate.com/github/mxenabled/action_subscriber)
|
3
|
+
[](https://gemnasium.com/mxenabled/action_subscriber)
|
4
|
+
[](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: java
|
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
|
requirement: !ruby/object:Gem::Requirement
|
@@ -223,7 +223,7 @@ files:
|
|
223
223
|
- spec/lib/action_subscriber/threadpool_spec.rb
|
224
224
|
- spec/spec_helper.rb
|
225
225
|
- spec/support/user_subscriber.rb
|
226
|
-
homepage: https://github.com/
|
226
|
+
homepage: https://github.com/mxenabled/action_subscriber
|
227
227
|
licenses:
|
228
228
|
- MIT
|
229
229
|
metadata: {}
|
@@ -235,12 +235,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
235
235
|
requirements:
|
236
236
|
- - ">="
|
237
237
|
- !ruby/object:Gem::Version
|
238
|
-
version: '
|
238
|
+
version: '0'
|
239
239
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
240
240
|
requirements:
|
241
|
-
- - "
|
241
|
+
- - ">="
|
242
242
|
- !ruby/object:Gem::Version
|
243
|
-
version:
|
243
|
+
version: '0'
|
244
244
|
requirements: []
|
245
245
|
rubyforge_project:
|
246
246
|
rubygems_version: 2.4.8
|