capistrano-unformatt 1.14.1 → 1.15
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/CHANGELOG.md +4 -0
- data/capistrano-unformatt.gemspec +1 -1
- data/vendor/templates/logrotate.conf.erb +11 -0
- data/vendor/templates/puma.daemon.erb +1 -1
- data/vendor/templates/sidekiq.daemon.erb +1 -1
- data/vendor/templates/sunspot.daemon.erb +1 -1
- data/vendor/templates/unicorn.daemon.erb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a27a477800524403be26b36de9a55201062f3910
|
|
4
|
+
data.tar.gz: 2d51caeb0e6bebfab64ea14164e04d635583438e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53e698a542a0b7bfcbf8272661f46a9bb130da700d079ad550030c5468fc17629865150716e1cdc88b292c48ceef1ff339f46dc1a5ff831dc2023edcbd202970
|
|
7
|
+
data.tar.gz: da86832385345654565baa06d4f141a654abf9d1cfb6678b0eb24083c8fb0a2da16b6f0db6d83fb7851764f478bfe4ce369c6086cf67c50fc3831bdc9da7e113
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "capistrano-unformatt"
|
|
7
|
-
spec.version = '1.
|
|
7
|
+
spec.version = '1.15'
|
|
8
8
|
spec.authors = ["unformatt"]
|
|
9
9
|
spec.email = ["unformatt@gmail.com"]
|
|
10
10
|
spec.description = "Custom recipes for Unformatt projects"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
# Description: <%= "Launches #{fetch(:application)}-puma" %>
|
|
17
17
|
### END INIT INFO
|
|
18
18
|
|
|
19
|
-
PATH=/home
|
|
19
|
+
PATH=/home/<%=fetch(:monit_user)%>/.rbenv/shims:/home/<%=fetch(:monit_user)%>/.rbenv/bin:$PATH
|
|
20
20
|
PIDFILE=<%= "#{shared_path}/pids/puma.pid" %>
|
|
21
21
|
export RAILS_ENV=production
|
|
22
22
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
# Description: <%= "Launches #{fetch(:application)}-sidekiq" %>
|
|
17
17
|
### END INIT INFO
|
|
18
18
|
|
|
19
|
-
PATH=/home
|
|
19
|
+
PATH=/home/<%=fetch(:monit_user)%>/.rbenv/shims:/home/<%=fetch(:monit_user)%>/.rbenv/bin:$PATH
|
|
20
20
|
PIDFILE=<%= "#{shared_path}/pids/sidekiq.pid" %>
|
|
21
21
|
export RAILS_ENV=production
|
|
22
22
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
# Description: <%= "Launches #{fetch(:application)}-sunspot" %>
|
|
17
17
|
### END INIT INFO
|
|
18
18
|
|
|
19
|
-
PATH=/home
|
|
19
|
+
PATH=/home/<%=fetch(:monit_user)%>/.rbenv/shims:/home/<%=fetch(:monit_user)%>/.rbenv/bin:$PATH
|
|
20
20
|
PIDFILE=<%= "#{shared_path}/pids/sunspot-solr.pid" %>
|
|
21
21
|
export RAILS_ENV=production
|
|
22
22
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
# Description: <%= "Launches #{fetch(:application)}-unicorn" %>
|
|
17
17
|
### END INIT INFO
|
|
18
18
|
|
|
19
|
-
PATH=/home
|
|
19
|
+
PATH=/home/<%=fetch(:monit_user)%>/.rbenv/shims:/home/<%=fetch(:monit_user)%>/.rbenv/bin:$PATH
|
|
20
20
|
PIDFILE=<%= "#{shared_path}/pids/unicorn.pid" %>
|
|
21
21
|
export RAILS_ENV=production
|
|
22
22
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-unformatt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: '1.15'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- unformatt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -70,6 +70,7 @@ files:
|
|
|
70
70
|
- lib/capistrano/unformatt/sidekiq.rb
|
|
71
71
|
- lib/capistrano/unformatt/sunspot.rb
|
|
72
72
|
- lib/capistrano/unformatt/unicorn.rb
|
|
73
|
+
- vendor/templates/logrotate.conf.erb
|
|
73
74
|
- vendor/templates/nginx.conf.erb
|
|
74
75
|
- vendor/templates/puma.daemon.erb
|
|
75
76
|
- vendor/templates/puma.monit.erb
|
|
@@ -101,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
102
|
version: '0'
|
|
102
103
|
requirements: []
|
|
103
104
|
rubyforge_project:
|
|
104
|
-
rubygems_version: 2.
|
|
105
|
+
rubygems_version: 2.6.13
|
|
105
106
|
signing_key:
|
|
106
107
|
specification_version: 4
|
|
107
108
|
summary: Custom recipes for Unformatt projects
|