search for: merb_test

Displaying 2 results from an estimated 2 matches for "merb_test".

Did you mean: drb_test
2007 Aug 13
0
Problems running merb from trunk
...the stack trace makes no sense. It terminates on this line: resolve_controller 68 /opt/local/lib/ruby/gems/1.8/gems/merb-0.3.7/ lib/merb/merb_dispatcher.rb As you can see, this is in the merb-0.3.7 gem, but earlier in the stack trace I can see this: run 290 /Users/lukesutton/Pending/merb_test/framework/lib/merb/ server.rb So, even though I''m running merb from the framework dir, for some reason it''s calling code in the gem and blowing up. This makes no sense to me :) I''m running this using the script/merb script. You guys have any clues to what I'...
2007 Sep 18
10
Routes
hi all, I want to move some routing tasks out of the router and into the controller. The goal is to make Merb feel less like mod_rewrite and give the user more control at the controller. The new Router is simple: it takes the path_info (not the whole request) then outputs a controller class and some parameters from the path matching. The rest of the routing would be done at the controller level.