fastly_nsq 1.10.1 → 1.11.0

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
- SHA256:
3
- metadata.gz: 7a2ad1978ec60aceffaa2d7ad65bfde7fb39b448bcdba9af1c717cdd40f2d26e
4
- data.tar.gz: aa81a7f22dfd9dea23eabf3ba1ccdf07e1a768a9345a30c63b3cbce1f4849bc0
2
+ SHA1:
3
+ metadata.gz: b067a71d7a3821f41c711971347d0ed33aa3402d
4
+ data.tar.gz: 7fb4fef7e5aa3566ff2acc662ca669e488ed7b15
5
5
  SHA512:
6
- metadata.gz: 3dd5106b6c756c8e42776bc92abcff24c3a0a1b4bb1c7b3e2d5ec9d9a71c1dc4805e63a6957b419e46f985b8140010f1fb224ab8f5fd538c95ab80b1006deb2d
7
- data.tar.gz: 18b175afe0c3398d47f85557f6a0f29daa066c1ad41492d79b819c92de9433ca430341a0232ca5dc4821a6a30ad267ecd96a54d279cd96280d31a82dcfde54a9
6
+ metadata.gz: 452d2dff87897e591204ceb983c23254be8d5d6ad3bc5d32e495570e5ee9bb437c822048db67eff8a97c94fd00e9e0265afc02e49b82a369e1dbfc562e3e40a5
7
+ data.tar.gz: dfe7e5e2ee5dae2d4cbdfbeb6a9ac98203ad26a4a7c3a9d799e1376f2e51bd1bdd403b48c4beab720f59093c2dd76e2873d65106b36ed2b27cde15c9d66bb2df
data/ChangeLog.md CHANGED
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [v1.10.1](https://github.com/fastly/fastly_nsq/tree/HEAD)
3
+ ## [v1.11.0](https://github.com/fastly/fastly_nsq/tree/HEAD)
4
4
 
5
+ [Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.10.1...v1.11.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Updates for STDERR and STDOUT redirection when daemonizing. [\#87](https://github.com/fastly/fastly_nsq/pull/87) ([leklund](https://github.com/leklund))
10
+
11
+ ## [v1.10.1](https://github.com/fastly/fastly_nsq/tree/v1.10.1) (2018-07-24)
5
12
  [Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.10.0...v1.10.1)
6
13
 
7
14
  **Merged pull requests:**
@@ -223,11 +223,13 @@ class FastlyNsq::CLI
223
223
 
224
224
  reopen(files_to_reopen)
225
225
 
226
- [$stdout, $stderr].each do |io|
227
- File.open(options.fetch(:logfile, '/dev/null'), 'ab') do |f|
228
- io.reopen(f)
226
+ if options[:logfile]
227
+ [$stdout, $stderr].each do |io|
228
+ File.open(options.fetch(:logfile, '/dev/null'), 'ab') do |f|
229
+ io.reopen(f)
230
+ end
231
+ io.sync = true
229
232
  end
230
- io.sync = true
231
233
  end
232
234
  $stdin.reopen('/dev/null')
233
235
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FastlyNsq
4
- VERSION = '1.10.1'
4
+ VERSION = '1.11.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastly_nsq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.1
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tommy O'Neil
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2018-07-24 00:00:00.000000000 Z
16
+ date: 2018-07-25 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: awesome_print
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  version: '0'
269
269
  requirements: []
270
270
  rubyforge_project:
271
- rubygems_version: 2.7.3
271
+ rubygems_version: 2.6.14
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Fastly NSQ Adapter