capistrano-puma 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/capistrano-puma.rb +1 -1
- data/lib/capistrano/tasks/puma.rake +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb19979b05dfec118348c37fe4a5e8b762ffcddd
|
4
|
+
data.tar.gz: de51dc681ae2b11493bea2e6f82ed36f427221fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c764104ecef4a2bcfa1bd865078284b0cca1bebb6c33ee32f799b98a5f2a6c2e87732629a73c9d61f7384143ceb15ae0a34e2dab87f9041bceb8bd46995b8f6a
|
7
|
+
data.tar.gz: b0fb052d41cc86bb01b26b5422d687e70d88ac10097a89bc1834f3ab8d2365568d2991607cf7ad3f4b40fd6f88bc52ec61f738851d2db2aee19d1dfe553c9bdc
|
data/lib/capistrano-puma.rb
CHANGED
@@ -59,10 +59,10 @@ namespace :load do
|
|
59
59
|
task :defaults do
|
60
60
|
set :sockets_path, -> { shared_path.join('tmp/sockets/') }
|
61
61
|
set :puma_roles, -> { :app }
|
62
|
-
set :puma_socket, -> { "unix://#{sockets_path.join('puma.sock')}" }
|
63
|
-
set :pumactl_socket, -> { "unix://#{sockets_path.join('pumactl.sock')}" }
|
64
|
-
set :puma_state, -> { sockets_path.join('puma.state') }
|
65
|
-
set :puma_log, -> { shared_path.join("log/puma-#{stage}.log") }
|
62
|
+
set :puma_socket, -> { "unix://#{fetch(:sockets_path).join('puma.sock')}" }
|
63
|
+
set :pumactl_socket, -> { "unix://#{fetch(:sockets_path).join('pumactl.sock')}" }
|
64
|
+
set :puma_state, -> { fetch(:sockets_path).join('puma.state') }
|
65
|
+
set :puma_log, -> { shared_path.join("log/puma-#{fetch(:stage)}.log") }
|
66
66
|
set :puma_flags, -> { nil }
|
67
67
|
end
|
68
68
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Johannes Opper
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
63
|
rubyforge_project:
|
64
|
-
rubygems_version: 2.
|
64
|
+
rubygems_version: 2.1.11
|
65
65
|
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: Provide deployment tasks for puma
|