Sha256: de838f84be360801351721210ae47e83bb62b87a70c67f803253006744612fa9

Contents?: true

Size: 1.3 KB

Versions: 12

Compression:

Stored size: 1.3 KB

Contents

# Merb::Router is the request routing mapper for the merb framework.
#
# You can route a specific URL to a controller / action pair:
#
#   match("/contact").
#     to(:controller => "info", :action => "contact")
#
# You can define placeholder parts of the url with the :symbol notation. These
# placeholders will be available in the params hash of your controllers. For example:
#
#   match("/books/:book_id/:action").
#     to(:controller => "books")
#   
# Or, use placeholders in the "to" results for more complicated routing, e.g.:
#
#   match("/admin/:module/:controller/:action/:id").
#     to(:controller => ":module/:controller")
#
# You can specify conditions on the placeholder by passing a hash as the second
# argument of "match"
#
#   match("/registration/:course_name", :course_name => /^[a-z]{3,5}-\d{5}$/).
#     to(:controller => "registration")
#
# You can also use regular expressions, deferred routes, and many other options.
# See merb/specs/merb/router.rb for a fairly complete usage sample.

Merb.logger.info("Compiling routes...")
Merb::Router.prepare do
  match("/").to(:controller => "testing", :action => "show_form")
  match("/internal_redirect").to(:controller => "testing", :action => "internal_redirect")
  match("/external_redirect").to(:controller => "testing", :action => "external_redirect")
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
adva-0.2.4 test/webrat/spec/integration/merb/config/router.rb
adva-0.2.3 test/webrat/spec/integration/merb/config/router.rb
adva-0.2.2 test/webrat/spec/integration/merb/config/router.rb
adva-0.2.1 test/webrat/spec/integration/merb/config/router.rb
adva-0.2.0 test/webrat/spec/integration/merb/config/router.rb
adva-0.1.4 test/webrat/spec/integration/merb/config/router.rb
adva-0.1.3 test/webrat/spec/integration/merb/config/router.rb
adva-0.1.2 test/webrat/spec/integration/merb/config/router.rb
adva-0.1.1 test/webrat/spec/integration/merb/config/router.rb
adva-0.1.0 test/webrat/spec/integration/merb/config/router.rb
adva-0.0.1 test/webrat/spec/integration/merb/config/router.rb
integrity-0.1.9 vendor/webrat/spec/integration/merb/config/router.rb