I''m just about ready to release 1.4.2. Here''s the
pre-release:
gem install camping --source code.whytheluckystiff.net
The biggest recent change is that the Camping commandline tool now
allows mounting of several apps. I''ve eliminated examples/serve and am
encouraging use of the camping tool. Instead, use:
camping examples/blog/blog.rb examples/tepee/tepee.rb
(or)
camping examples/**/*.rb
This will mount blog.rb at /blog and tepee.rb at /tepee.
Usage: camping app1.rb, app2.rb...
camping, the microframework ON-button for ruby 1.8.4 (2006-05-07)
[i386-freebsd6.0]
Specific options:
-h, --host HOSTNAME Host for web server to bind to
(default is all IPs)
-p, --port NUM Port for web server (defaults to 3301)
-d, --database FILE Database file (defaults to
/home/why/.camping.db)
Common options:
--help Show this message
--version Show version
_why