capistrano3-puma 7.0.0 → 7.1.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
2
  SHA256:
3
- metadata.gz: e49b3136d5a3c5279003a9139c46ce543b0e313cba29cfe17a91f86e4d44b67b
4
- data.tar.gz: 9659ae66cf2f6d0347411f6dedb79a2f8d616d0a5648e2fe0c306601d874cb0c
3
+ metadata.gz: c35dc9ccbaff14a1fff1a8562fabc12f5e1b7a5ad1f5154598ff3e047b74c348
4
+ data.tar.gz: 7b7fd37c69d3a85e3a61d417a0bc3fbfe6125a9d26dbb716c595c9c23ede27ad
5
5
  SHA512:
6
- metadata.gz: b8534f612b8bc2afb41266a1a7bf3a91671768a776b7dc0669057dec847f3bc1d1767cb17dd9da2c6624de7f0d98045012fce8c77f29634272938444a7cb0840
7
- data.tar.gz: 1ae3fd5a9a4a3c5884388055e61c271fe97766dfce7e7372aa85567f50f899b6b00d905b7b1e867156786dc75cd4b4626e8ef58201b29c697bccc2fb33c2d8a5
6
+ metadata.gz: 4f07c452c5443b21342b0d2f7c979204d6e38fe319f7e7082c10e13908bd313a05de35032d8b78abd004bcfcb3e15acfd8f5f21cc56e90e5e4103f2cd649b5b2
7
+ data.tar.gz: a1ef0c8dc878b6be0a21d9e5d0df5aa44ee30148f53115a14b032ec97924500b1630b5380134281b623eefd463dee5232107bc4495c509504cf152c12297512d
@@ -38,8 +38,18 @@ ExecReload=/bin/kill -USR1 $MAINPID
38
38
  RestartSec=1
39
39
  Restart=on-failure
40
40
 
41
- <%="StandardOutput=append:#{fetch(:puma_access_log)}" if fetch(:puma_access_log) %>
42
- <%="StandardError=append:#{fetch(:puma_error_log)}" if fetch(:puma_error_log) %>
41
+ <%- puma_access_log = fetch(:puma_access_log) -%>
42
+ <%- if puma_access_log == "journal" %>
43
+ StandardOutput=journal
44
+ <%- else -%>
45
+ <%="StandardOutput=append:#{puma_access_log}" if puma_access_log %>
46
+ <%- end -%>
47
+ <%- puma_error_log = fetch(:puma_error_log) -%>
48
+ <%- if puma_error_log == "journal" %>
49
+ StandardError=journal
50
+ <%- else -%>
51
+ <%="StandardError=append:#{puma_error_log}" if puma_error_log %>
52
+ <%- end -%>
43
53
 
44
54
  SyslogIdentifier=<%= fetch(:puma_service_unit_name) %>
45
55
  [Install]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano3-puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-09-23 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: capistrano
@@ -83,7 +82,6 @@ homepage: https://github.com/seuros/capistrano-puma
83
82
  licenses:
84
83
  - MIT
85
84
  metadata: {}
86
- post_install_message:
87
85
  rdoc_options: []
88
86
  require_paths:
89
87
  - lib
@@ -98,8 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
96
  - !ruby/object:Gem::Version
99
97
  version: '0'
100
98
  requirements: []
101
- rubygems_version: 3.0.3.1
102
- signing_key:
99
+ rubygems_version: 3.6.9
103
100
  specification_version: 4
104
101
  summary: Puma integration for Capistrano
105
102
  test_files: []