1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Proper format README for gem generation.

Also, include LICENSE to RDoc options.
This commit is contained in:
Luis Lavena 2009-07-06 22:55:45 -03:00
parent b72ba2d43d
commit 7e76225480
2 changed files with 8 additions and 0 deletions

6
README
View file

@ -1,5 +1,11 @@
= Mongrel: Simple Fast Mostly Ruby Web Server = 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. 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. 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.

View file

@ -14,6 +14,8 @@ HOE = Hoe.spec 'mongrel' do
spec_extras[:extensions] = ["ext/http11/extconf.rb"] spec_extras[:extensions] = ["ext/http11/extconf.rb"]
spec_extras[:executables] = ['mongrel_rails'] spec_extras[:executables] = ['mongrel_rails']
spec_extras[:extra_rdoc_files] = ['LICENSE']
extra_deps << ['gem_plugin', '>= 0.2.3'] extra_deps << ['gem_plugin', '>= 0.2.3']
extra_dev_deps << ['rake-compiler', ">= 0.5.0"] extra_dev_deps << ['rake-compiler', ">= 0.5.0"]
end end