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

Minor fix to Rakefile so all rdoc is created.

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@78 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-03-04 19:10:26 +00:00
parent e174990cc8
commit 8efc08e239
3 changed files with 35 additions and 1 deletions

View file

@ -10,7 +10,7 @@ include FileUtils
setup_tests
setup_clean ["ext/http11/*.{bundle,so,obj,pdb,lib,def,exp}", "ext/http11/Makefile", "pkg", "lib/*.bundle", "*.gem", "doc/site/output", ".config"]
setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c']
setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c']
desc "Does a full compile, test run"
task :default => [:compile, :test]

View file

@ -46,6 +46,18 @@
<h4>NEWS</h4>
<dl>
<dt>Mar-04-2006</dt>
<dd>
<h5><a href="{relocatable: news.html}">Mongrel 0.3.8 -- Bug Fixes</a></h5>
<p>A small release to close off some of the bugs in the tracker. This also
adds the ability to get at the RailsHandler from within a Rails application.
This is necessary to properly map URI's to their physical locations.
</p>
<a href="http://rubyforge.org/frs/?group_id=1306" title="Downloads">Download</a>
<a href="{relocatable: news.html}"><img src="{relocatable: images/li4.gif}" alt="more" /><br /></a></p>
</dd>
<dt>Mar-02-2006</dt>
<dd>
<h5><a href="{relocatable: news.html}">Mongrel 0.3.7.1 -- Solid Rails, Win32, SwitchTower, Docs</a></h5>

View file

@ -7,6 +7,28 @@ ordering: 2
h1. Latest News
h2. Mar-04: Mongrel 0.3.8 -- Bug Fix Release
A small release that fixes a few bugs reported to the tracker and adds
one enhancement that was requested. Rails applications can now access
the RailsHandler that is being used and then work with the DirHandler
that is responsible for serving files. For example:
render_text @request.cgi.handler.files.can_serve(@request['PATH_INFO'])
Will return the physical location of the given URI. This will be the basis
of an improved send_file and possibly file-upload system.
* Fix for mongrel_rails_service -n parameter name clash.
* Fix for giving mongrel_rails_service paths with spaces in the name.
* Fix for a compiler warning in the C extension on Debian.
* Improvement to the Rakefile for cleanly building win32 and regular gems.
* Access to RailsHandler from within Rails applications.
* Tested Platforms: Linux, Win32, FreeBSD, OSX
"Download 0.3.8":http://rubyforge.org/frs/?group_id=1306
h2. Mar-03: Mongrel 0.3.7.1 -- Solid Rails, Win32, SwitchTower, Docs
A slightly longer time between releases but this is packed with lots of good