nsq-ruby 2.0.4 → 2.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6a79b53902f96dfbac897e8d42c72f9b77da5b8
4
- data.tar.gz: 8ae3a1e0cbac66b12e535f9bb63174196aab6c2e
3
+ metadata.gz: 75fe2c17097cac238a13e0c784c10178234aa0ba
4
+ data.tar.gz: 830a7e15cc355dc436ee985d6e0e436954088b14
5
5
  SHA512:
6
- metadata.gz: feabe84729269c1b866c2cdc483bc88aae2243d438c23371eccec15ee63b69e7045728c73c9bb35e97e1c176b340e7fa1d01445cf69e5274782b0b4987abf599
7
- data.tar.gz: c0835409b4b270106eb8a9f091997b1a3db97cf07c7b5557c893c359a42b86bebff51fcf9084719a6b23505b04485f1125f556e556c0bc898e40c44796f5a77a
6
+ metadata.gz: 833b00efbf86bd95efbe65f1125d1cd126419e926cc37dd0bdc4731d1b8f8839dd86dd53f811246ac4e9e397f5cdb3ab735a33ef9c4caa6ee725c0071f51b05c
7
+ data.tar.gz: 4a7f4889f04a893d5fc7d3fa123d8d89b1eb6bc32b98574f67ec10dbb078801bb3d249f1fd39d63e8934919c958639ecfb4fabde4af2bc75719b746a46b85950
data/README.md CHANGED
@@ -33,7 +33,6 @@ producer.deferred_write(10, 'one')
33
33
  # Message deferred of 1250ms
34
34
  producer.deferred_write(1.25, 'one')
35
35
 
36
-
37
36
  # Close the connection
38
37
  producer.terminate
39
38
  ```
@@ -40,8 +40,6 @@ module Nsq
40
40
  # in this case let's connect to an nsqd instance directly
41
41
  add_connection(opts[:nsqd] || '127.0.0.1:4150', max_in_flight: @max_in_flight)
42
42
  end
43
-
44
- at_exit{terminate}
45
43
  end
46
44
 
47
45
 
@@ -27,8 +27,6 @@ module Nsq
27
27
  else
28
28
  add_connection('127.0.0.1:4150')
29
29
  end
30
-
31
- at_exit{terminate}
32
30
  end
33
31
 
34
32
  def write(*raw_messages)
@@ -2,7 +2,7 @@ module Nsq
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 4
5
+ PATCH = 5
6
6
  BUILD = nil
7
7
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nsq-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wistia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-22 00:00:00.000000000 Z
11
+ date: 2016-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 2.5.1
112
+ rubygems_version: 2.6.8
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Ruby client library for NSQ