Sha256: cb99227aee49266af618e3120abcc1848efd805b8a09a82f58351285fad904cd
Contents?: true
Size: 853 Bytes
Versions: 2
Compression:
Stored size: 853 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| # default route, usually you don't want to change this r.add '/:controller/:action/:id' # change this for your home page to be avaiable at / r.add '/', :controller => 'default', :action =>'index' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
merb-0.1.0 | examples/skeleton/dist/conf/router.rb |
merb-0.2.0 | examples/skeleton/dist/conf/router.rb |