capistrano-unformatt 1.14.1 → 1.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2514580633a877335b18c153fc2b9e549d09aa62
4
- data.tar.gz: a5c67b2ac106e755e1add05d8cdb7cf02adad7e5
3
+ metadata.gz: a27a477800524403be26b36de9a55201062f3910
4
+ data.tar.gz: 2d51caeb0e6bebfab64ea14164e04d635583438e
5
5
  SHA512:
6
- metadata.gz: 7b25274847b09e8c11fd0e3380e8c666e6beab2326a862ae23721919831978d357e2078ddc49e8876869224baebc5f514bc1aa28231059bc2927aa96dadaf158
7
- data.tar.gz: 58d1710085f98634fe75b5a7fb162c1b87100c1a510c080f55bda4be62d58dc4b1f25fe45c19e8a2252244f028ee152e55b336c07371907e4ab41f236c126cde
6
+ metadata.gz: 53e698a542a0b7bfcbf8272661f46a9bb130da700d079ad550030c5468fc17629865150716e1cdc88b292c48ceef1ff339f46dc1a5ff831dc2023edcbd202970
7
+ data.tar.gz: da86832385345654565baa06d4f141a654abf9d1cfb6678b0eb24083c8fb0a2da16b6f0db6d83fb7851764f478bfe4ce369c6086cf67c50fc3831bdc9da7e113
data/CHANGELOG.md CHANGED
@@ -85,3 +85,7 @@
85
85
  ## v1.14.1
86
86
 
87
87
  * Added description to rails seed task
88
+
89
+ ## v1.15
90
+
91
+ * Fix on templates
@@ -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.14.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"
@@ -0,0 +1,11 @@
1
+ <%=shared_path%>/log/*.log {
2
+ daily
3
+ missingok
4
+ size 200M
5
+ maxsize 200M
6
+ rotate 7
7
+ compress
8
+ delaycompress
9
+ notifempty
10
+ copytruncate
11
+ }
@@ -16,7 +16,7 @@
16
16
  # Description: <%= "Launches #{fetch(:application)}-puma" %>
17
17
  ### END INIT INFO
18
18
 
19
- PATH=/home/maintainer/.rbenv/shims:/home/maintainer/.rbenv/bin:$PATH
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/maintainer/.rbenv/shims:/home/maintainer/.rbenv/bin:$PATH
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/maintainer/.rbenv/shims:/home/maintainer/.rbenv/bin:$PATH
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/maintainer/.rbenv/shims:/home/maintainer/.rbenv/bin:$PATH
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.14.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-06-07 00:00:00.000000000 Z
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.5.2
105
+ rubygems_version: 2.6.13
105
106
  signing_key:
106
107
  specification_version: 4
107
108
  summary: Custom recipes for Unformatt projects