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 +4 -4
- data/lib/capistrano/templates/puma.service.erb +12 -2
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c35dc9ccbaff14a1fff1a8562fabc12f5e1b7a5ad1f5154598ff3e047b74c348
|
|
4
|
+
data.tar.gz: 7b7fd37c69d3a85e3a61d417a0bc3fbfe6125a9d26dbb716c595c9c23ede27ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
42
|
-
|
|
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.
|
|
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:
|
|
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.
|
|
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: []
|