about summary refs log tree commit homepage
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README27
1 files changed, 5 insertions, 22 deletions
diff --git a/README b/README
index 3c6cf34..0d15292 100644
--- a/README
+++ b/README
@@ -1,8 +1,8 @@
-= Clogger - configurable request logging for Rack
+= \Clogger - configurable request logging for Rack
 
 == DESCRIPTION
 
-Clogger is Rack middleware for logging HTTP requests.  The log format
+\Clogger is Rack middleware for logging HTTP requests.  The log format
 is customizable so you can specify exactly which fields to log.
 
 == FEATURES
@@ -21,12 +21,12 @@ is customizable so you can specify exactly which fields to log.
     all bytes in the range of \x00-\x1F
 
 * multi-instance capable and (optionally) reentrant.  You can use
-  Clogger in a multi-threaded server, and even multiple Cloggers logging
+  \Clogger in a multi-threaded server, and even multiple Cloggers logging
   to different locations and different formats in the same process.
 
 == SYNOPSIS
 
-Clogger may be loaded as Rack middleware in your config.ru:
+\Clogger may be loaded as Rack middleware in your config.ru:
 
   require "clogger"
   use Clogger,
@@ -81,7 +81,7 @@ somewhere inside the "Rails::Initializer.run do |config|" block:
 
 == REQUIREMENTS
 
-* Ruby, Rack
+* {Ruby}[http://ruby-lang.org/], {Rack}[http://rack.rubyforge.org/]
 
 == DEVELOPMENT
 
@@ -126,20 +126,3 @@ There is an optional C extension that should be compatible with MRI
 other Ruby implementations, but be sure to let us know if that's not the
 case.  No pre-built binaries are currently distributed, let us know if
 you're interested in helping with the release/support effort.
-
-== LICENSE
-
-Copyright (C) 2009 Eric Wong and contributors.
-
-Clogger is free software; you can redistribute it and/or modify it under
-the terms of the GNU Lesser General Public License as published by the
-Free Software Foundation, version 3.0.
-
-Clogger is distributed in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or
-FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
-License in the COPYING file for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with Clogger; if not, write to the Free Software Foundation, Inc.,
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301