qsagi 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a06b77294235b319f460ab2378941f677dafd7bb
4
- data.tar.gz: a5690fd00c88aab223f0c995f43fb6e036fa3874
3
+ metadata.gz: 1dab63c0f440425bb5340012aea1b400223cda34
4
+ data.tar.gz: a288c4482fe6696e4468863596988ce8fbbb5259
5
5
  SHA512:
6
- metadata.gz: c89e9cdc6cc17cab61d77f9660c2a33692ad1aef89292049e2697d7209c5aa81127211f97a7aa28e3a646c8316bd491943b8a8a5459841cb74fc887ebe32628e
7
- data.tar.gz: 45f669f8ae514b1fee4c05ecb20ab326ec18fe3daaf3b36c9015a36325de826289f47f49109eda249078149ee3760a189f5ed3bf6e7e94b15e574d834d18b324
6
+ metadata.gz: cee22fdddd00c0b593e79d4088d1a47701f7687f8c037419b3dc30ad42663479bf1a2dc65c01df57bc00b8f23f5659ee5220b01b5b71afe0f8e04046a12d6744
7
+ data.tar.gz: ba88e9d7c4e1cc249cf99dbd6db4746bf03d9d473cf1a19d17d07daa5a5ed52c29e0b2ae1bff05f5cf912e36a98f6adec0100da0bd15141ba1a2876cec190347
data/lib/qsagi/queue.rb CHANGED
@@ -41,7 +41,10 @@ module Qsagi
41
41
  :mandatory => true,
42
42
  :serializer => _serializer,
43
43
  :exchange_options => _exchange_options,
44
- :exchange => _exchange
44
+ :exchange => _exchange,
45
+ :connect_timeout => 5,
46
+ :read_timeout => 5,
47
+ :write_timeout => 5
45
48
  }
46
49
  end
47
50
 
@@ -26,6 +26,9 @@ module Qsagi
26
26
  :continuation_timeout => options[:continuation_timeout],
27
27
  :username => options[:username],
28
28
  :password => options[:password],
29
+ :connect_timeout => options[:connect_timeout],
30
+ :read_timeout => options[:read_timeout],
31
+ :write_timeout => options[:write_timeout]
29
32
  )
30
33
  @client.start
31
34
  @channel = @client.create_channel
data/lib/qsagi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Qsagi
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qsagi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Braintree
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-21 00:00:00.000000000 Z
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bunny
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 2.9.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 2.9.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
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
40
  version: '1.7'
41
41
  description: A friendly way to talk to RabbitMQ
@@ -45,8 +45,8 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - .gitignore
49
- - .ruby-version
48
+ - ".gitignore"
49
+ - ".ruby-version"
50
50
  - Gemfile
51
51
  - LICENSE.txt
52
52
  - README.md
@@ -74,17 +74,17 @@ require_paths:
74
74
  - lib
75
75
  required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - '>='
77
+ - - ">="
78
78
  - !ruby/object:Gem::Version
79
79
  version: '0'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
- - - '>='
82
+ - - ">="
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.2.0
87
+ rubygems_version: 2.5.2.1
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: A friendly way to talk to RabbitMQ