unicorn 1.1.0 → 1.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.
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +1 -1
- data/lib/unicorn/const.rb +2 -2
- data/lib/unicorn/tee_input.rb +2 -2
- metadata +4 -4
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
|
@@ -169,7 +169,7 @@ NEWS: GIT-VERSION-FILE .manifest
|
|
|
169
169
|
$(RAKE) -s news_rdoc > $@+
|
|
170
170
|
mv $@+ $@
|
|
171
171
|
|
|
172
|
-
SINCE = 0.
|
|
172
|
+
SINCE = 1.0.0
|
|
173
173
|
ChangeLog: LOG_VERSION = \
|
|
174
174
|
$(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
|
|
175
175
|
echo $(GIT_VERSION) || git describe)
|
data/lib/unicorn/const.rb
CHANGED
|
@@ -8,8 +8,8 @@ module Unicorn
|
|
|
8
8
|
# Symbols did not really improve things much compared to constants.
|
|
9
9
|
module Const
|
|
10
10
|
|
|
11
|
-
# The current version of Unicorn, currently 1.1.
|
|
12
|
-
UNICORN_VERSION="1.1.
|
|
11
|
+
# The current version of Unicorn, currently 1.1.1
|
|
12
|
+
UNICORN_VERSION="1.1.1"
|
|
13
13
|
|
|
14
14
|
DEFAULT_HOST = "0.0.0.0" # default TCP listen host address
|
|
15
15
|
DEFAULT_PORT = 8080 # default TCP listen port
|
data/lib/unicorn/tee_input.rb
CHANGED
|
@@ -176,8 +176,8 @@ private
|
|
|
176
176
|
# _entire_ request has been sent, and those will not have
|
|
177
177
|
# raised EOFError on us.
|
|
178
178
|
socket.close if socket
|
|
179
|
-
raise ClientShutdown, "bytes_read=#{tmp.size}", []
|
|
180
|
-
when HttpParserError
|
|
179
|
+
raise Unicorn::ClientShutdown, "bytes_read=#{tmp.size}", []
|
|
180
|
+
when Unicorn::HttpParserError
|
|
181
181
|
e.set_backtrace([])
|
|
182
182
|
end
|
|
183
183
|
raise e
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicorn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Unicorn hackers
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-07-
|
|
18
|
+
date: 2010-07-11 00:00:00 +00:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|