Sha256: 30ed6cc7d24cd60fca831fc0ebe49b64c92145919b9c30f40a406580426d7f42
Contents?: true
Size: 939 Bytes
Versions: 1
Compression:
Stored size: 939 Bytes
Contents
# Merb::RouteMatcher is the request routing mapper for the merb framework. # You can define placeholder parts of the url with the :smbol notation. # so r.add '/foo/:bar/baz/:id', :class => 'Bar', :method => 'foo' # will match against a request to /foo/123/baz/456. It will then # use the class Bar as your merb controller and call the foo method on it. # the foo method will recieve a hash with {:bar => '123', :id => '456'} # as the content. So the :placeholders sections of your routes become # a hash of arguments to your controller methods. # The default route is installed puts "Compiling routes.." Merb::RouteMatcher.prepare do |r| r.add '/foo/:bar/baz/:id', :controller => 'Test', :action => 'foo' r.add '/bar/:bar_id/baz/:id', :controller => 'Test', :action => 'foo' r.add '/:controller/:action/:id' r.add '/bar/:*rest', :controller => 'Test', :action => 'glob' r.add '', :controller => 'posts', :action =>'list' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb-0.0.8 | examples/sample_app/dist/conf/router.rb |