unicorn 5.5.0.1.g6836 → 5.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Documentation/unicorn_rails.1.txt +5 -7
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +1 -1
- data/ISSUES +0 -8
- data/lib/unicorn.rb +3 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0ccf5d1fa9326ffe756484e343d135b31e82f02260901e12effb9675a94e9bb
|
4
|
+
data.tar.gz: c273ee8cc51bdad405c8c35f814b66bd7c571b9e50947e9cf974c10a8f55107f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e3efff490b9b3ed6ce63ae9a179abb1f1199f7fd0a6799a71b3e6124e1ea9c64096eafd40039a6d485e47c9b1ccd77d3479c098c04935048101bf2c02dcad9e
|
7
|
+
data.tar.gz: 7a7f7ce0fbb2295882b13e641522b112cc8a4b60a767219fdf4734487b329e8ffc45bde32e96b7064b62738ebf20ee8b9324473542d8ef2eb4bd14eac7de3f91
|
@@ -12,14 +12,12 @@ unicorn_rails [-c CONFIG_FILE] [-E RAILS_ENV] [-D] [RACKUP_FILE]
|
|
12
12
|
|
13
13
|
# DESCRIPTION
|
14
14
|
|
15
|
-
A rackup(1)-like command to launch Rails
|
16
|
-
|
17
|
-
|
15
|
+
A rackup(1)-like command to launch ancient Rails (2.x and earlier)
|
16
|
+
applications using Unicorn. Rails 3 (and later) support Rack natively,
|
17
|
+
so users are encouraged to use unicorn(1) instead of unicorn_rails(1).
|
18
18
|
|
19
|
-
It is
|
20
|
-
|
21
|
-
to use unicorn(1) instead of unicorn_rails(1). Users of Rails 1.x/2.y
|
22
|
-
may also use unicorn(1) instead of unicorn_rails(1).
|
19
|
+
It is expected to be started in your Rails application root (RAILS_ROOT),
|
20
|
+
but the "working_directory" directive may be used in the CONFIG_FILE.
|
23
21
|
|
24
22
|
The outward interface resembles rackup(1), the internals and default
|
25
23
|
middleware loading is designed like the `script/server` command
|
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
@@ -175,7 +175,7 @@ doc: .document $(ext)/unicorn_http.c man html .olddoc.yml $(PLACEHOLDERS)
|
|
175
175
|
find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
|
176
176
|
$(RM) -r doc
|
177
177
|
$(OLDDOC) prepare
|
178
|
-
$(RDOC) -f
|
178
|
+
$(RDOC) -f dark216
|
179
179
|
$(OLDDOC) merge
|
180
180
|
install -m644 COPYING doc/COPYING
|
181
181
|
install -m644 NEWS.atom.xml doc/NEWS.atom.xml
|
data/ISSUES
CHANGED
@@ -94,11 +94,3 @@ Or Atom feeds:
|
|
94
94
|
The HTML archives at https://bogomips.org/unicorn-public/
|
95
95
|
also has links to per-thread Atom feeds and downloadable
|
96
96
|
mboxes.
|
97
|
-
|
98
|
-
You may optionally subscribe via plain-text email:
|
99
|
-
|
100
|
-
mailto:unicorn-public+subscribe@bogomips.org
|
101
|
-
(and confirming the auto-reply)
|
102
|
-
|
103
|
-
Just keep in mind we suck at delivering email, so using NNTP,
|
104
|
-
or Atom feeds might be a better bet...
|
data/lib/unicorn.rb
CHANGED
@@ -123,6 +123,9 @@ def self.pipe # :nodoc:
|
|
123
123
|
io.fcntl(F_SETPIPE_SZ, Raindrops::PAGE_SIZE)
|
124
124
|
rescue Errno::EINVAL
|
125
125
|
# old kernel
|
126
|
+
rescue Errno::EPERM
|
127
|
+
# resizes fail if Linux is close to the pipe limit for the user
|
128
|
+
# or if the user does not have permissions to resize
|
126
129
|
end
|
127
130
|
end
|
128
131
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicorn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.5.
|
4
|
+
version: 5.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- unicorn hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -285,11 +285,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
285
285
|
version: '3.0'
|
286
286
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
287
287
|
requirements:
|
288
|
-
- - "
|
288
|
+
- - ">="
|
289
289
|
- !ruby/object:Gem::Version
|
290
|
-
version:
|
290
|
+
version: '0'
|
291
291
|
requirements: []
|
292
|
-
rubygems_version: 3.
|
292
|
+
rubygems_version: 3.0.2
|
293
293
|
signing_key:
|
294
294
|
specification_version: 4
|
295
295
|
summary: Rack HTTP server for fast clients and Unix
|