unicorn 0.991.0 → 0.991.0.4.g0cb0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +1 -1
- data/ext/unicorn_http/ext_help.h +1 -0
- data/lib/unicorn/launcher.rb +1 -1
- data/lib/unicorn/util.rb +1 -1
- data/t/t0005-working_directory_app.rb.sh +1 -1
- data/unicorn.gemspec +1 -1
- metadata +15 -11
data/README
CHANGED
data/ext/unicorn_http/ext_help.h
CHANGED
@@ -22,6 +22,7 @@ static void rb_18_str_set_len(VALUE str, long len)
|
|
22
22
|
RSTRING(str)->len = len;
|
23
23
|
RSTRING(str)->ptr[len] = '\0';
|
24
24
|
}
|
25
|
+
# define rb_str_set_len(str,len) rb_18_str_set_len(str,len)
|
25
26
|
#endif /* !defined(HAVE_RB_STR_SET_LEN) */
|
26
27
|
|
27
28
|
/* not all Ruby implementations support frozen objects (Rubinius does not) */
|
data/lib/unicorn/launcher.rb
CHANGED
data/lib/unicorn/util.rb
CHANGED
data/unicorn.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
|
17
17
|
s.authors = ["Unicorn hackers"]
|
18
18
|
s.date = Time.now.utc.strftime('%Y-%m-%d')
|
19
|
-
s.description = File.read("README").split(/\n\n/)[1].delete('
|
19
|
+
s.description = File.read("README").split(/\n\n/)[1].delete('\\')
|
20
20
|
s.email = %q{mongrel-unicorn@rubyforge.org}
|
21
21
|
s.executables = %w(unicorn unicorn_rails)
|
22
22
|
s.extensions = %w(ext/unicorn_http/extconf.rb)
|
metadata
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicorn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 1081584981
|
5
|
+
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 991
|
9
9
|
- 0
|
10
|
-
|
10
|
+
- 4
|
11
|
+
- g0cb0
|
12
|
+
version: 0.991.0.4.g0cb0
|
11
13
|
platform: ruby
|
12
14
|
authors:
|
13
15
|
- Unicorn hackers
|
@@ -15,7 +17,7 @@ autorequire:
|
|
15
17
|
bindir: bin
|
16
18
|
cert_chain: []
|
17
19
|
|
18
|
-
date: 2010-06-
|
20
|
+
date: 2010-06-12 00:00:00 +00:00
|
19
21
|
default_executable:
|
20
22
|
dependencies:
|
21
23
|
- !ruby/object:Gem::Dependency
|
@@ -49,11 +51,11 @@ dependencies:
|
|
49
51
|
type: :development
|
50
52
|
version_requirements: *id002
|
51
53
|
description: |-
|
52
|
-
|
54
|
+
Unicorn is an HTTP server for Rack applications designed to only serve
|
53
55
|
fast clients on low-latency, high-bandwidth connections and take
|
54
|
-
advantage of features in
|
56
|
+
advantage of features in Unix/Unix-like kernels. Slow clients should
|
55
57
|
only be served by placing a reverse proxy capable of fully buffering
|
56
|
-
both the the request and response in between
|
58
|
+
both the the request and response in between Unicorn and slow clients.
|
57
59
|
email: mongrel-unicorn@rubyforge.org
|
58
60
|
executables:
|
59
61
|
- unicorn
|
@@ -331,12 +333,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
331
333
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
332
334
|
none: false
|
333
335
|
requirements:
|
334
|
-
- - "
|
336
|
+
- - ">"
|
335
337
|
- !ruby/object:Gem::Version
|
336
|
-
hash:
|
338
|
+
hash: 25
|
337
339
|
segments:
|
338
|
-
-
|
339
|
-
|
340
|
+
- 1
|
341
|
+
- 3
|
342
|
+
- 1
|
343
|
+
version: 1.3.1
|
340
344
|
requirements: []
|
341
345
|
|
342
346
|
rubyforge_project: mongrel
|