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

Did the recent announcement for 0.3.5. Modified the Rakefile in prep for the win32 service.

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@45 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-02-18 20:32:05 +00:00
parent 0ee05d0acf
commit e22cae38e1
5 changed files with 23 additions and 4 deletions

View file

@ -35,6 +35,7 @@ summary = "A small fast HTTP library and server that runs Rails, Camping, and Ni
test_file = "test/test_ws.rb"
author="Zed A. Shaw"
name="mongrel"
scripts=['mongrel_rails']
setup_gem(name, version, author, summary, ['mongrel_rails'], test_file) do |spec|
spec.add_dependency('daemons', '>= 0.4.2')
@ -44,7 +45,7 @@ desc "Build a binary gem for Win32"
task :win32_gem => [:clean, :compile, :test, :package_win32]
task :package_win32 do
setup_win32_gem(name, version, version, summary, ['mongrel_rails'], test_file) do |spec|
setup_win32_gem(name, version, version, summary, scripts, test_file) do |spec|
spec.add_dependency('daemons', '>= 0.4.2')
spec.files << 'ext/http11/http11.so'
spec.extensions = []

View file

@ -173,6 +173,4 @@ class StopCommand < Mongrel::Command::Command
end
Mongrel::Command::Registry.instance.run ARGV

View file

@ -46,6 +46,15 @@
<h4>NEWS</h4>
<dl>
<dt>Feb-18-2006</dt>
<dd>
<h5><a href="{relocatable: news.html}">Mongrel 0.3.5 -- CGI Fixed</a></h5>
<p>A complete rewrite of the CGIWrapper that actually works.</p>
<a href="http://rubyforge.org/frs/?group_id=1306" title="Downloads">Download</a>
<a href="{relocatable: news.html}"><img src="images/li4.gif" alt="more" /><br /></a></p>
</dd>
<dt>Feb-16-2006</dt>
<dd>
<h5><a href="{relocatable: news.html}">Mongrel 0.3.4 -- Win32 Baby</a></h5>

View file

@ -7,6 +7,17 @@ ordering: 2
h1. Latest News
h2. Feb-18: Mongrel 0.3.5 -- CGI Actually Works
The CGIWrapper code I had written was complete and utter crap, so
I rewrote it and now it should be very correct. After looking at
more CGI code I think I'll set my sights on the CGI::process, CGI::Cookie::process,
and read_multipart functions as the next place to put my efforts. These
three functions are so full of hand coded parsing that rewriting them with
a Ragel processor would be a huge gain.
"Download 0.3.3":http://rubyforge.org/frs/?group_id=1306
h2. Feb-16: Mongrel 0.3.4 -- Win32 Pre-built Gems
This release has pre-built win32 gems thanks to Wilson Bilkovich attacking the

View file

@ -488,7 +488,7 @@ module Mongrel
if File.exist? index
# serve the index
return index
elsif @listing_allows
elsif @listing_allowed
# serve the directory
req
else