Just thought I'd let you know that I've been working on Mab lately: https://github.com/camping/mab.
This will replace Markaby in the next release. Also, I've been benchmarking it on this simple, but view-heavy, app. Camping w/Markaby: 480 requests/second Camping w/Mab: 1490 requests/second Camping.goes :App module App::Controllers class Index def get render :index end end end module App::Views def index div.page.index do div.big do h1.main! "Welcome! World." end end end def layout html do head do title "Web Page" end body do div.wrapper! do yield end end end end end // Magnus Holm _______________________________________________ Camping-list mailing list Camping-list@rubyforge.org http://rubyforge.org/mailman/listinfo/camping-list