mina-puma 0.1.2 → 0.2.0
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 +4 -2
- data/lib/mina/puma/version.rb +1 -1
- data/mina-puma.gemspec +0 -1
- metadata +2 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7154bd6439bcb482781051875994f1be4f4accfc
|
4
|
+
data.tar.gz: 9ecf6aaa9bba1df43bbcb4484b5f5782030cea5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ed89a5bd08c17de9a3c70e96aba2d42098b0e3865beea8696708953ad9298056b2d67f9297091d6e9a4685bc4dce9731dbf3b80862dabd57f4f075c5473dd66
|
7
|
+
data.tar.gz: 49a88bd9c1b722a9c247cce5d32183d3605ae038490a4f6348bcb451cfab6a16481f71d300d00d0e2885c518a5420cfe48133a4dbc802ec1ccbbe797ac8a1074
|
data/README.md
CHANGED
@@ -23,6 +23,8 @@ And then execute:
|
|
23
23
|
Or install it yourself as:
|
24
24
|
|
25
25
|
$ gem install mina-puma
|
26
|
+
|
27
|
+
Note: by just including this gem, does not mean your development server will be Puma, for that, you need explicitly add `gem 'puma'` to your Gemfile.
|
26
28
|
|
27
29
|
## Usage
|
28
30
|
|
@@ -37,7 +39,7 @@ Make sure the following settings are set in your `config/deploy.rb`:
|
|
37
39
|
Make sure the following directories exists on your server:
|
38
40
|
|
39
41
|
* `shared/tmp/sockets` - directory for socket files.
|
40
|
-
* `shared/tmp/pids` -
|
42
|
+
* `shared/tmp/pids` - directory for pid files.
|
41
43
|
|
42
44
|
OR you can set other directories by setting follow variables:
|
43
45
|
|
@@ -60,7 +62,7 @@ $ mina puma:start
|
|
60
62
|
# Puma needs a place to store its pid file and socket file.
|
61
63
|
queue! %(mkdir -p "#{deploy_to}/#{shared_path}/tmp/sockets")
|
62
64
|
queue! %(chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/tmp/sockets")
|
63
|
-
queue! %(#{deploy_to}/#{shared_path}/tmp/pids")
|
65
|
+
queue! %(mkdir -p "#{deploy_to}/#{shared_path}/tmp/pids")
|
64
66
|
queue! %(chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/tmp/pids")
|
65
67
|
|
66
68
|
...
|
data/lib/mina/puma/version.rb
CHANGED
data/mina-puma.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mina-puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Sandelius
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mina
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: puma
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: bundler
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -107,4 +93,3 @@ signing_key:
|
|
107
93
|
specification_version: 4
|
108
94
|
summary: Puma tasks for Mina
|
109
95
|
test_files: []
|
110
|
-
has_rdoc:
|