qsagi 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/lib/qsagi/standard_queue.rb +3 -1
- data/lib/qsagi/version.rb +1 -1
- data/qsagi.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6c1657688bf4b0e502f6874a2b3e1138b12cd12
|
4
|
+
data.tar.gz: ee0f8fbe53ebfbf3dfbc6fdbd3dd77d2cf477284
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dabe240665ede31c347b4f50a55f02f0b3a7287c2a82f0841313c05d7b5cc176bd1a08d18b9599647d657539c783817c13d129ef63b46c13d835ab7ba73447b
|
7
|
+
data.tar.gz: a7002edd8ecd4cbd4de8a6f504705f12bbb2ac7f4d6bd214e0f62a4b388e8ee133403e4dd713ba308029035b3d55ff807338eb365505f43dde314a8493942490
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.0.0-p353
|
data/lib/qsagi/standard_queue.rb
CHANGED
@@ -23,7 +23,9 @@ module Qsagi
|
|
23
23
|
:host => options[:host],
|
24
24
|
:port => options[:port],
|
25
25
|
:heartbeat => options[:heartbeat],
|
26
|
-
:continuation_timeout => options[:continuation_timeout]
|
26
|
+
:continuation_timeout => options[:continuation_timeout],
|
27
|
+
:username => options[:username],
|
28
|
+
:password => options[:password],
|
27
29
|
)
|
28
30
|
@client.start
|
29
31
|
@channel = @client.create_channel
|
data/lib/qsagi/version.rb
CHANGED
data/qsagi.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qsagi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Braintree
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.7
|
33
|
+
version: '1.7'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.7
|
40
|
+
version: '1.7'
|
41
41
|
description: A friendly way to talk to RabbitMQ
|
42
42
|
email:
|
43
43
|
- code@getbraintree.com
|
@@ -46,6 +46,7 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- .gitignore
|
49
|
+
- .ruby-version
|
49
50
|
- Gemfile
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
@@ -83,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
84
|
version: '0'
|
84
85
|
requirements: []
|
85
86
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
87
|
+
rubygems_version: 2.1.11
|
87
88
|
signing_key:
|
88
89
|
specification_version: 4
|
89
90
|
summary: A friendly way to talk to RabbitMQ
|