capistrano-unicorn-nginx 3.3.1 → 3.3.2

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: 98fa7684b9edfa61257f2b2bb53b1459efe853b8
4
- data.tar.gz: 28a21acc6aa76bb167246ddef2e7dbecc11bb38d
3
+ metadata.gz: 720a604c0226c038d3e5abe3e1d49980eac3d172
4
+ data.tar.gz: 75db144d492da37337c3d8bfad21d1f8323c73ec
5
5
  SHA512:
6
- metadata.gz: e1ec2f6f9fd7cae579ebe7c87f078842f56d380ef3f899f336fe789b432a411eaeec2520f0ff41ba000115c624df3c9c092bd6c74af62d7dfca981f2285eff3b
7
- data.tar.gz: a9e7f049219a0c771ddf04639841317f3ed188f38f9243302a9134d2b58e23f54df26ebfa4c4d6b59918a313e84c51ff70bd7ac24dff5060a8ef53884de99b30
6
+ metadata.gz: f1cea9b4ea3a93d73c5750be432d909b1bd1d43a0cd9ded9783ba51cc9f2a16c210944d2ab982f62a8d256ca7d61d4a112193d73e18aae652505f9fb39c7a6a6
7
+ data.tar.gz: 0c3459d9aed1b129c85668ce47205e13e24afa3ec085281c0e99d4effe408e141a533053e823a66723c4e460815782e8b3f294e102f1ecfc95b1e0445ac13f9c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ### master
4
4
 
5
+ ### v3.3.2, 2015-02-16
6
+ - bug fix: replaced non-existent `log_dir` with `unicorn_log_dir` (@rhomeister)
7
+
5
8
  ### v3.3.1, 2015-02-16
6
9
  - made nginx fail_timeout configurable (@rhomeister)
7
10
  - added logrotate configuration for nginx logs (@rhomeister)
@@ -19,11 +19,11 @@ module Capistrano
19
19
  end
20
20
 
21
21
  def unicorn_log_file
22
- log_dir.join('unicorn.stdout.log')
22
+ unicorn_log_dir.join('unicorn.stdout.log')
23
23
  end
24
24
 
25
25
  def unicorn_error_log_file
26
- log_dir.join('unicorn.stderr.log')
26
+ unicorn_log_dir.join('unicorn.stderr.log')
27
27
  end
28
28
 
29
29
  def unicorn_default_logrotate_config_file
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module UnicornNginx
3
- VERSION = "3.3.1"
3
+ VERSION = "3.3.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-unicorn-nginx
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1
4
+ version: 3.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruben Stranders