capistrano3-unicorn-nginx 0.1.0 → 0.1.1
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/capistrano3-unicorn-nginx.gemspec +1 -1
- data/lib/capistrano3/tasks/unicorn.rake +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af5c808a71492133519a9e85a3244d359018c46b
|
4
|
+
data.tar.gz: 9596df2a25bb6dde3ff88bc38803178d22c07ffd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d54fce7c35402a8ece5b23649fa55d76512ad30b810610d9800f129ef92c2e58716ec2ea9cf56044e1e60779c2aba6c47371c266e372ab21a16f148d55b837ce
|
7
|
+
data.tar.gz: 9533385ddecff14cef1e5feea9c8d0dda0eb9227a402a9240c36f68559b2dd22c6548829990c1101126c69f5d676458ee2457ff081ed80cb86b37f33e3527112
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'capistrano3-unicorn-nginx'
|
7
|
-
s.version = '0.1.
|
7
|
+
s.version = '0.1.1'
|
8
8
|
s.date = '2019-02-01'
|
9
9
|
s.summary = "Capistrano tasks for automatic and sensible unicorn configuration"
|
10
10
|
s.description = <<-EOF.gsub(/^\s+/, '')
|
@@ -121,7 +121,7 @@ namespace :unicorn do
|
|
121
121
|
desc "Unicorn generate config file"
|
122
122
|
task :setup do
|
123
123
|
on roles(fetch(:unicorn_roles)) do
|
124
|
-
execute(:mkdir, '-pv', File.dirname(fetch(:unicorn_config_path))) unless file_exists?(fetch(:
|
124
|
+
execute(:mkdir, '-pv', File.dirname(fetch(:unicorn_config_path))) unless file_exists?(fetch(:unicorn_config_path))
|
125
125
|
upload! template('unicorn.rb.erb'), fetch(:unicorn_config_path)
|
126
126
|
end
|
127
127
|
end
|