capistrano3-puma 0.4.1 → 0.4.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 +4 -4
- data/README.md +1 -0
- data/lib/capistrano/puma/version.rb +1 -1
- data/lib/capistrano/templates/puma_monit.conf.erb +3 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1727c90719e8f399a1a3e9ca3f87e1fb23608dc0
|
|
4
|
+
data.tar.gz: d5885679754d2ca6d1a3a109729e5e168dd623ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b1dbfb1427178d347029a1669427864009096376eb1ff3fef059f5ba57b27e73f0fc4645682cd93e3f58c7bd6e9aa7eda9d5587b72f1b5f07bfb101d42d95e2
|
|
7
|
+
data.tar.gz: ef92757fca76c23d27475117f3074a4de9da468c066154e0cf83576a513a6a3982a79a573a059e46d8a4dd2a38d84f60c03b7f0964c3150b5e1afce870c2fbdf
|
data/README.md
CHANGED
|
@@ -52,6 +52,7 @@ Ensure that the following directories are shared (via ``linked_dirs``):
|
|
|
52
52
|
tmp/pids tmp/sockets log
|
|
53
53
|
|
|
54
54
|
## Changelog
|
|
55
|
+
- 0.4.2: Fix monit template to support chruby
|
|
55
56
|
- 0.4.1: Fix puma jungle (debian)
|
|
56
57
|
- 0.4.0: Multi-bind support
|
|
57
58
|
- 0.3.7: Dependency bug fix
|
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
# Service name: <%= puma_monit_service_name %>
|
|
3
3
|
#
|
|
4
4
|
check process <%= puma_monit_service_name %>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
with pidfile "<%= fetch(:puma_pid) %>"
|
|
6
|
+
start program = "/usr/bin/sudo -u <%= @role.user %> /bin/bash -c 'cd <%= current_path %> && <%= SSHKit.config.command_map[:bundle] %> exec puma -C <%= fetch(:puma_conf) %>'"
|
|
7
|
+
stop program = "/usr/bin/sudo -u <%= @role.user %> /bin/bash -c 'cd <%= current_path %> && <%= SSHKit.config.command_map[:bundle] %> exec pumactl -S <%= fetch(:puma_state) %> stop'"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano3-puma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abdelkader Boudih
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|