From f652e68a60463bb8da45dd9718263bfcb0834dac Mon Sep 17 00:00:00 2001 From: maraby Date: Sun, 6 Jan 2008 17:45:47 -0500 Subject: [PATCH] Finished initial releasable version of MRouter, the Rack Merb Router. Changed internals around extensively to load appropriately, set up the helper to allow apps to define routes within themselves. Wrote a quick test app and rackup config file to test functionality. --- mrouter/rackapp.ru | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mrouter/rackapp.ru diff --git a/mrouter/rackapp.ru b/mrouter/rackapp.ru new file mode 100644 index 0000000..ca7f02c --- /dev/null +++ b/mrouter/rackapp.ru @@ -0,0 +1,4 @@ +require 'rackapp' + +use Rack::MRouter +run Rap.new -- 2.11.4.GIT