89b00809aa
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Add LICENSE. * Remove default value of GEM_BUILD. * Ajust new ruby package's framework. * Update dependency according to gemspec. * Add CONFLICTS since it will install the same name commands both ruby18 and ruby19 based packages. = Changelog == Version 2.0.0 - 2009-06-24 * Change highlighting mode default to 'off' instead of 'on' * Update for Thin 1.2.2 == Version 1.0.3 - 2009-03-02 * Update for MIME::Types 1.16 == Version 1.0.2 - 2008-12-03 * Fix FileType namespace issue (thanks defunkt) and new version of coderay * various task maintenance * updated version dependencies == Version 1.0.1 - 2008-04-24 * Fix performance issue in serving large files * Fix performance issue in checking for coderay file type when coderay would not be used.
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
Heel is a small static web server for use when you need a quick web
|
|
server for a directory. Once the server is running, heel will use
|
|
launchy (http://copiousfreetime.rubyforge.org/launchy/) to open your
|
|
browser at the URL of your document root. Heel is built using
|
|
Rack(http://rack.rubyforge.org) and Thin
|
|
(http://code.macournoyer.com/thin/)
|
|
|
|
% heel
|
|
>> Thin web server (v1.0.0 codename That's What She Said)
|
|
>> Threaded mode OFF
|
|
>> Maximum connections set to 1024
|
|
>> Listening on 0.0.0.0:4331, CTRL+C to stop
|
|
|
|
Launching your browser...
|
|
|
|
Or run it in the background
|
|
|
|
% heel --daemonize Created /Users/jeremy/.heel
|
|
|
|
heel's PID (/Users/jeremy/.heel/heel.pid) and log file
|
|
(/Users/jeremy/.heel/heel.log) are stored here Launching your browser
|
|
at http://0.0.0.0:4331/
|
|
|
|
% heel --kill Sending TERM to process 3304
|
|
|
|
Done.
|
|
|
|
Heel is a small static web server for use when you need a quick web
|
|
server for a directory. Heel is built using Rack and Thin. Beyond
|
|
just serving up webpages, heel uses an ERB template and famfamfam
|
|
icons to create useful index pages. And to make things even easier it
|
|
launches your browser for you so no cut and paste necessary.
|