unicorn 0.991.0 → 0.991.0.4.g0cb0

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/README CHANGED
@@ -1,4 +1,4 @@
1
- = \Unicorn: Rack HTTP server for fast clients and Unix
1
+ = Unicorn: Rack HTTP server for fast clients and Unix
2
2
 
3
3
  \Unicorn is an HTTP server for Rack applications designed to only serve
4
4
  fast clients on low-latency, high-bandwidth connections and take
@@ -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) */
@@ -7,7 +7,7 @@ $stderr.binmode
7
7
 
8
8
  require 'unicorn'
9
9
 
10
- class Unicorn::Launcher
10
+ module Unicorn::Launcher
11
11
 
12
12
  # We don't do a lot of standard daemonization stuff:
13
13
  # * umask is whatever was set by the parent process at startup
data/lib/unicorn/util.rb CHANGED
@@ -14,7 +14,7 @@ module Unicorn
14
14
  end
15
15
  end
16
16
 
17
- class Util
17
+ module Util
18
18
  class << self
19
19
 
20
20
  def is_log?(fp)
@@ -18,7 +18,7 @@ EOF
18
18
  # the whole point of this exercise
19
19
  echo "working_directory '$t_pfx.app'" >> $unicorn_config
20
20
  cd /
21
- unicorn -D -c $unicorn_config fooapp.rb
21
+ unicorn -D -c $unicorn_config -I. fooapp.rb
22
22
  unicorn_wait_start
23
23
  }
24
24
 
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: 3939
5
- prerelease: false
4
+ hash: 1081584981
5
+ prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 991
9
9
  - 0
10
- version: 0.991.0
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-11 00:00:00 +00:00
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
- \Unicorn is an HTTP server for Rack applications designed to only serve
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 UnixUnix-like kernels. Slow clients should
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 \Unicorn and slow clients.
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: 3
338
+ hash: 25
337
339
  segments:
338
- - 0
339
- version: "0"
340
+ - 1
341
+ - 3
342
+ - 1
343
+ version: 1.3.1
340
344
  requirements: []
341
345
 
342
346
  rubyforge_project: mongrel