right_amqp 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -88,6 +88,7 @@ module RightAMQP
|
|
88
88
|
# :user(String):: User name
|
89
89
|
# :pass(String):: Password
|
90
90
|
# :vhost(String):: Virtual host path name
|
91
|
+
# :ssl(Boolean):: Whether SSL is enabled
|
91
92
|
# :insist(Boolean):: Whether to suppress redirection of connection
|
92
93
|
# :reconnect_interval(Integer):: Number of seconds between reconnect attempts
|
93
94
|
# :heartbeat(Integer):: Number of seconds between AMQP connection heartbeats used to keep
|
@@ -601,6 +602,7 @@ module RightAMQP
|
|
601
602
|
:vhost => @options[:vhost],
|
602
603
|
:host => address[:host],
|
603
604
|
:port => address[:port],
|
605
|
+
:ssl => @options[:ssl],
|
604
606
|
:identity => @identity,
|
605
607
|
:insist => @options[:insist] || false,
|
606
608
|
:heartbeat => @options[:heartbeat],
|
@@ -106,6 +106,7 @@ module RightAMQP
|
|
106
106
|
# :user(String):: User name
|
107
107
|
# :pass(String):: Password
|
108
108
|
# :vhost(String):: Virtual host path name
|
109
|
+
# :ssl(Boolean):: Whether SSL is enabled
|
109
110
|
# :insist(Boolean):: Whether to suppress redirection of connection
|
110
111
|
# :reconnect_interval(Integer):: Number of seconds between reconnect attempts, defaults to RECONNECT_INTERVAL
|
111
112
|
# :heartbeat(Integer):: Number of seconds between AMQP connection heartbeats used to keep
|
data/right_amqp.gemspec
CHANGED
@@ -24,8 +24,8 @@ require 'rubygems'
|
|
24
24
|
|
25
25
|
Gem::Specification.new do |spec|
|
26
26
|
spec.name = 'right_amqp'
|
27
|
-
spec.version = '0.3.
|
28
|
-
spec.date = '2012-
|
27
|
+
spec.version = '0.3.1'
|
28
|
+
spec.date = '2012-06-08'
|
29
29
|
spec.authors = ['Lee Kirchhoff']
|
30
30
|
spec.email = 'lee@rightscale.com'
|
31
31
|
spec.homepage = 'https://github.com/rightscale/right_amqp'
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
|
|
37
37
|
spec.required_ruby_version = '>= 1.8.7'
|
38
38
|
spec.require_path = 'lib'
|
39
39
|
|
40
|
-
spec.add_dependency('right_support', '
|
40
|
+
spec.add_dependency('right_support', ['>= 1.2', '< 3.0'])
|
41
41
|
spec.add_dependency('eventmachine', '~> 0.12.10')
|
42
42
|
|
43
43
|
spec.description = <<-EOF
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: right_amqp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 1
|
10
|
+
version: 0.3.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Lee Kirchhoff
|
@@ -15,20 +15,27 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-06-08 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
23
|
none: false
|
24
24
|
requirements:
|
25
|
-
- -
|
25
|
+
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
hash: 11
|
28
28
|
segments:
|
29
29
|
- 1
|
30
30
|
- 2
|
31
31
|
version: "1.2"
|
32
|
+
- - <
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
hash: 7
|
35
|
+
segments:
|
36
|
+
- 3
|
37
|
+
- 0
|
38
|
+
version: "3.0"
|
32
39
|
requirement: *id001
|
33
40
|
name: right_support
|
34
41
|
prerelease: false
|