about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-05-27 00:01:31 -0700
committerEric Wong <normalperson@yhbt.net>2009-05-27 00:07:56 -0700
commit59c3e80ceb6cff688b8bf3ed7dfc00ff041fca48 (patch)
treee29d8f52e6d25e05b785708c0d7bea655265f9b7
parent9b02315c543b3ac0cc31cf16e8dbed10b34812e1 (diff)
downloadunicorn-59c3e80ceb6cff688b8bf3ed7dfc00ff041fca48.tar.gz
-rw-r--r--README18
-rw-r--r--Rakefile4
2 files changed, 10 insertions, 12 deletions
diff --git a/README b/README
index 5a4c89c..161a3e1 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-= Unicorn: Unix + LAN/localhost-only fork of Mongrel
+= Unicorn: Rack HTTP server for Unix, fast clients and nothing else
 
 == Features
 
@@ -81,9 +81,8 @@ You can get the latest source via git from the following locations
   git://repo.or.cz/unicorn.git (mirror)
   http://repo.or.cz/r/unicorn.git (mirror)
 
-If you have web browser software for the World Wide Web
-(on the Information Superhighway), you may browse the code from
-your web browser and download the latest snapshot tarballs here:
+You may browse the code from the web and download the latest snapshot
+tarballs here:
 
 * http://git.bogomips.org/cgit/unicorn.git (cgit)
 * http://repo.or.cz/w/unicorn.git (gitweb)
@@ -102,8 +101,8 @@ In RAILS_ROOT, run:
 
   unicorn_rails
 
-Unicorn will bind to all interfaces TCP port 8080 by default.
-You may use the +-l/--listen+ switch to bind to a different
+Unicorn will bind to all interfaces on TCP port 8080 by default.
+You may use the +--listen/-l+ switch to bind to a different
 address:port or a UNIX socket.
 
 === Configuration File(s)
@@ -126,10 +125,9 @@ Like the creatures themselves, production deployments of Unicorn are
 rare or even non-existent.  There is NO WARRANTY whatsoever if anything
 goes wrong, but let us know and we'll try our best to fix it.
 
-Unicorn is designed to only serve fast clients.  See the PHILOSOPHY
-and DESIGN documents for more details regarding this.
-
-Rainbows are NOT included.
+Unicorn is designed to only serve fast clients either on the local host
+or a fast LAN.  See the PHILOSOPHY and DESIGN documents for more details
+regarding this.
 
 == Known Issues
 
diff --git a/Rakefile b/Rakefile
index e65271c..e7b4c36 100644
--- a/Rakefile
+++ b/Rakefile
@@ -3,7 +3,7 @@ require 'rubygems'
 require 'echoe'
 
 Echoe.new("unicorn") do |p|
-  p.summary = "A small fast HTTP library and server for Rack applications."
+  p.summary = "Rack HTTP server for Unix, fast clients and nothing else"
   p.author = "Eric Wong"
   p.email = "normalperson@yhbt.net"
   p.clean_pattern = ['ext/unicorn/http11/*.{bundle,so,o,obj,pdb,lib,def,exp}',
@@ -12,7 +12,7 @@ Echoe.new("unicorn") do |p|
                      'pkg', 'lib/*.bundle', '*.gem',
                      'site/output', '.config', 'coverage',
                      'test_*.log', 'log', 'doc']
-  p.url = "http://unicorn.bogomips.org"
+  p.url = "http://unicorn.bogomips.org/"
   p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
   p.need_tar_gz = false
   p.need_tgz = true