From 7e76225480197556de4bec5e6e573d88ff5a26be Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Mon, 6 Jul 2009 22:55:45 -0300 Subject: [PATCH] Proper format README for gem generation. Also, include LICENSE to RDoc options. --- README | 6 ++++++ tasks/gem.rake | 2 ++ 2 files changed, 8 insertions(+) diff --git a/README b/README index 816fa32b..0886bb42 100644 --- a/README +++ b/README @@ -1,5 +1,11 @@ = Mongrel: Simple Fast Mostly Ruby Web Server +* http://mongrel.rubyforge.org/ +* http://rubyforge.org/projects/mongrel +* http://github.com/luislavena/mongrel + +== Description + Mongrel is a small library that provides a very fast HTTP 1.1 server for Ruby web applications. It is not particular to any framework, and is intended to be just enough to get a web application running behind a more complete and robust web server. What makes Mongrel so fast is the careful use of an Ragel extension to provide fast, accurate HTTP 1.1 protocol parsing. This makes the server scream without too many portability issues. diff --git a/tasks/gem.rake b/tasks/gem.rake index f5cd62d5..6efd918d 100644 --- a/tasks/gem.rake +++ b/tasks/gem.rake @@ -14,6 +14,8 @@ HOE = Hoe.spec 'mongrel' do spec_extras[:extensions] = ["ext/http11/extconf.rb"] spec_extras[:executables] = ['mongrel_rails'] + spec_extras[:extra_rdoc_files] = ['LICENSE'] + extra_deps << ['gem_plugin', '>= 0.2.3'] extra_dev_deps << ['rake-compiler', ">= 0.5.0"] end