unicorn 5.1.0.pre1 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/GIT-VERSION-GEN +1 -1
- data/ISSUES +3 -5
- data/README +1 -6
- data/Sandbox +3 -3
- data/examples/unicorn@.service +2 -0
- metadata +5 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad413ab1a47428cacfbcae82684d4cbe36e77d33
|
4
|
+
data.tar.gz: 752c0ca2043e8e5e05558a7eb515b53f5e3107d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ca49a70bdc5a632797db82b10f30af7b3b4db10f856ef81b275d4e5b939454191aaae1883d0bb83129c7a95d3a697faec6e51ae2438ba5588f70ee6d04b73e7
|
7
|
+
data.tar.gz: d28bc86a89d0ebb29ecaec72f363e6c0991ab71e22c4ed43d44b9e6b8cc8c8b03939de84c005a91b8473d833cf691f42cb2c3684f5ac1d1c91c4af87c7f78fad
|
data/GIT-VERSION-GEN
CHANGED
data/ISSUES
CHANGED
@@ -5,7 +5,7 @@ submit patches and/or obtain support after you have searched the
|
|
5
5
|
{email archives}[http://bogomips.org/unicorn-public/] and
|
6
6
|
{documentation}[http://unicorn.bogomips.org/].
|
7
7
|
|
8
|
-
* No subscription will ever be required to email
|
8
|
+
* No subscription will ever be required to email us
|
9
9
|
* Cc: all participants in a thread or commit, as subscription is optional
|
10
10
|
* Do not {top post}[http://catb.org/jargon/html/T/top-post.html] in replies
|
11
11
|
* Quote as little as possible of the message you're replying to
|
@@ -69,9 +69,7 @@ document distributed with git) on guidelines for patch submission.
|
|
69
69
|
* nntp://news.public-inbox.org/inbox.comp.lang.ruby.unicorn
|
70
70
|
* http://bogomips.org/unicorn-public/
|
71
71
|
|
72
|
-
|
73
|
-
feeds the mailing list. Subscription is optional, so Cc:
|
74
|
-
all participants.
|
72
|
+
Mailing list subscription is optional, so Cc: all participants.
|
75
73
|
|
76
74
|
You can follow along via NNTP:
|
77
75
|
|
@@ -86,7 +84,7 @@ Or Atom feeds:
|
|
86
84
|
also has links to per-thread Atom feeds and downloadable
|
87
85
|
mboxes.
|
88
86
|
|
89
|
-
You may
|
87
|
+
You may optionally subscribe via plain-text email:
|
90
88
|
|
91
89
|
mailto:unicorn-public+subscribe@bogomips.org
|
92
90
|
(and confirming the auto-reply)
|
data/README
CHANGED
@@ -27,9 +27,6 @@ both the the request and response in between unicorn and slow clients.
|
|
27
27
|
all run within their own isolated address space and only serve one
|
28
28
|
client at a time for maximum robustness.
|
29
29
|
|
30
|
-
* Supports all Rack applications, along with pre-Rack versions of
|
31
|
-
Ruby on Rails via a Rack wrapper.
|
32
|
-
|
33
30
|
* Builtin reopening of all log files in your application via
|
34
31
|
USR1 signal. This allows logrotate to rotate files atomically and
|
35
32
|
quickly via rename instead of the racy and slow copytruncate method.
|
@@ -54,9 +51,7 @@ both the the request and response in between unicorn and slow clients.
|
|
54
51
|
|
55
52
|
* Simple and easy Ruby DSL for configuration.
|
56
53
|
|
57
|
-
* Decodes chunked
|
58
|
-
notification to be implemented as well as being able to tunnel
|
59
|
-
arbitrary stream-based protocols over HTTP.
|
54
|
+
* Decodes chunked requests on-the-fly.
|
60
55
|
|
61
56
|
== License
|
62
57
|
|
data/Sandbox
CHANGED
@@ -63,9 +63,9 @@ before_exec hook as illustrated by https://gist.github.com/534668
|
|
63
63
|
=== Ruby 2.0.0 close-on-exec and SIGUSR2 incompatibility
|
64
64
|
|
65
65
|
Ruby 2.0.0 enforces FD_CLOEXEC on file descriptors by default. unicorn
|
66
|
-
has been prepared for this behavior since unicorn 4.1.0,
|
67
|
-
|
68
|
-
|
66
|
+
has been prepared for this behavior since unicorn 4.1.0, and bundler
|
67
|
+
needs the "--keep-file-descriptors" option for "bundle exec":
|
68
|
+
http://bundler.io/man/bundle-exec.1.html
|
69
69
|
|
70
70
|
== Isolate
|
71
71
|
|
data/examples/unicorn@.service
CHANGED
@@ -11,6 +11,8 @@ Wants = unicorn.socket
|
|
11
11
|
After = unicorn.socket
|
12
12
|
|
13
13
|
[Service]
|
14
|
+
# bundler users must use the "--keep-file-descriptors" switch, here:
|
15
|
+
# ExecStart = bundle exec --keep-file-descriptors unicorn -c ...
|
14
16
|
ExecStart = /usr/bin/unicorn -c /path/to/unicorn.conf.rb /path/to/config.ru
|
15
17
|
Sockets = unicorn.socket
|
16
18
|
KillSignal = SIGQUIT
|
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.1.0
|
4
|
+
version: 5.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- unicorn hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01
|
11
|
+
date: 2016-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -115,8 +115,6 @@ extra_rdoc_files:
|
|
115
115
|
- lib/unicorn/util.rb
|
116
116
|
- lib/unicorn/oob_gc.rb
|
117
117
|
- lib/unicorn/worker.rb
|
118
|
-
- unicorn_1
|
119
|
-
- unicorn_rails_1
|
120
118
|
- ISSUES
|
121
119
|
- Sandbox
|
122
120
|
- Links
|
@@ -278,8 +276,6 @@ files:
|
|
278
276
|
- test/unit/test_upload.rb
|
279
277
|
- test/unit/test_util.rb
|
280
278
|
- unicorn.gemspec
|
281
|
-
- unicorn_1
|
282
|
-
- unicorn_rails_1
|
283
279
|
homepage: http://unicorn.bogomips.org/
|
284
280
|
licenses:
|
285
281
|
- GPL-2.0+
|
@@ -296,12 +292,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
296
292
|
version: '3.0'
|
297
293
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
298
294
|
requirements:
|
299
|
-
- - "
|
295
|
+
- - ">="
|
300
296
|
- !ruby/object:Gem::Version
|
301
|
-
version:
|
297
|
+
version: '0'
|
302
298
|
requirements: []
|
303
299
|
rubyforge_project:
|
304
|
-
rubygems_version: 2.
|
300
|
+
rubygems_version: 2.6.2
|
305
301
|
signing_key:
|
306
302
|
specification_version: 4
|
307
303
|
summary: Rack HTTP server for fast clients and Unix
|