amq-client 0.8.0 → 0.8.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.
- data/.travis.yml +6 -3
- data/Gemfile +1 -2
- data/lib/amq/client/async/adapters/coolio.rb +1 -1
- data/lib/amq/client/async/adapters/event_machine.rb +2 -1
- data/lib/amq/client/async/channel.rb +1 -1
- data/lib/amq/client/async/consumer.rb +1 -1
- data/lib/amq/client/async/queue.rb +1 -1
- data/lib/amq/client/version.rb +1 -1
- metadata +4 -4
data/.travis.yml
CHANGED
|
@@ -3,13 +3,12 @@ bundler_args: --without development
|
|
|
3
3
|
script: "bundle exec rspec spec"
|
|
4
4
|
before_script: ./bin/ci/before_build.sh
|
|
5
5
|
rvm:
|
|
6
|
+
- jruby
|
|
6
7
|
- 1.8.7
|
|
7
8
|
- 1.8.7-p249
|
|
8
|
-
- ree
|
|
9
9
|
- rbx-2.0
|
|
10
10
|
- 1.9.2
|
|
11
|
-
-
|
|
12
|
-
- jruby
|
|
11
|
+
- 1.9.3
|
|
13
12
|
gemfile:
|
|
14
13
|
- Gemfile
|
|
15
14
|
- gemfiles/eventmachine-pre
|
|
@@ -18,3 +17,7 @@ notifications:
|
|
|
18
17
|
- jakub@rabbitmq.com
|
|
19
18
|
- michaelklishin@me.com
|
|
20
19
|
- markizko@gmail.com
|
|
20
|
+
branches:
|
|
21
|
+
only:
|
|
22
|
+
- master
|
|
23
|
+
- 0.8.x-stable
|
data/Gemfile
CHANGED
|
@@ -11,7 +11,7 @@ module AMQ
|
|
|
11
11
|
class EventMachineClient < EM::Connection
|
|
12
12
|
|
|
13
13
|
#
|
|
14
|
-
#
|
|
14
|
+
# Behaviours
|
|
15
15
|
#
|
|
16
16
|
|
|
17
17
|
include AMQ::Client::Async::Adapter
|
|
@@ -260,6 +260,7 @@ module AMQ
|
|
|
260
260
|
|
|
261
261
|
|
|
262
262
|
self.start_automatic_recovery
|
|
263
|
+
self.upgrade_to_tls_if_necessary
|
|
263
264
|
end
|
|
264
265
|
|
|
265
266
|
# now we can set it. MK.
|
data/lib/amq/client/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amq-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 61
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.8.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jakub Stastny
|
|
@@ -18,7 +18,7 @@ autorequire:
|
|
|
18
18
|
bindir: bin
|
|
19
19
|
cert_chain: []
|
|
20
20
|
|
|
21
|
-
date: 2011-
|
|
21
|
+
date: 2011-08-25 00:00:00 +04:00
|
|
22
22
|
default_executable:
|
|
23
23
|
dependencies:
|
|
24
24
|
- !ruby/object:Gem::Dependency
|