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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9606e6316653dee2924d77c3d224cde0d76054c0
4
- data.tar.gz: 999d36ae2e80bf5459418d166b4a2069c2f88c28
3
+ metadata.gz: e32c3b5817aba153c54f3fcbadaa3091f8b64f64
4
+ data.tar.gz: 22f1904111089d88355560514e9e950a3a945e81
5
5
  SHA512:
6
- metadata.gz: 6838fe799bb1cf978077f79a9b579d47790c20669d54a2ee4e49b5b8d2b38a19e3b6e789e9255d4873697c4619ae0b9fced766bd79295fa241723f5ce67db880
7
- data.tar.gz: 563bb5285d8695a8ad98ce468225187f1569cb797c630b2c068fffe430910857d62d90b6506f4543e8734c294c5cf16cd9062670badf92dee47b905b3bd7693f
6
+ metadata.gz: 5c4506c7523b167c80b3e8b5fd3461d756b178484fca2cc9d063047ab02fdfc3bb6d6d7b06c35d3606990050906257cfc918a79fb206089b13c0f7c2f1af10cd
7
+ data.tar.gz: d883ce7283959c1b5670704d07bf9334110b09e68dd8f15e2e2574fd5afe30dd97187c29a8defe2c6e88b36c4a08674ceff44a0d1f0209186353378c99909782
@@ -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: 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-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
  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/moneydesktop/action_subscriber
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: '2.0'
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: 1.3.1
243
+ version: '0'
244
244
  requirements: []
245
245
  rubyforge_project:
246
246
  rubygems_version: 2.4.8