about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--DESIGN6
-rw-r--r--Links3
2 files changed, 2 insertions, 7 deletions
diff --git a/DESIGN b/DESIGN
index bff6a8b..46d7923 100644
--- a/DESIGN
+++ b/DESIGN
@@ -7,9 +7,7 @@
   all clients down, just one.  Only UNIX-like systems supporting
   fork() and file descriptor inheritance are supported.
 
-* The Ragel+C HTTP parser is taken from Mongrel.  This is the
-  only non-Ruby part and there are no plans to add any more
-  non-Ruby components.
+* The Ragel+C HTTP parser is taken from Mongrel.
 
 * All HTTP parsing and I/O is done much like Mongrel:
     1. read/parse HTTP request headers in full
@@ -31,7 +29,7 @@
 * One master process spawns and reaps worker processes.  The
   Rack application itself is called only within the worker process (but
   can be loaded within the master).  A copy-on-write friendly garbage
-  collector like the one found in Ruby 2.0.0dev or Ruby Enterprise Edition
+  collector like the one found in mainline Ruby 2.0.0 and later
   can be used to minimize memory usage along with the "preload_app true"
   directive (see Unicorn::Configurator).
 
diff --git a/Links b/Links
index ad05afd..16c9467 100644
--- a/Links
+++ b/Links
@@ -39,9 +39,6 @@ or services behind them.
 
 * {nginx}[http://nginx.org/] - the reverse proxy for use with unicorn
 
-* {kgio}[http://bogomips.org/kgio/] - the I/O library written for unicorn
-  (deprecated and functionality being mainlined into Ruby)
-
 === Derivatives
 
 * {Green Unicorn}[http://gunicorn.org/] - a Python version of unicorn