Created
November 12, 2008 18:21
-
-
Save teamon/24224 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Default < Application | |
def index | |
render :text => "index" | |
end | |
def admin_login | |
render :text => "dziala" | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
# RESTful routes | |
# resources :posts | |
# Adds the required routes for merb-auth using the password slice | |
slice(:merb_auth_slice_password, :name_prefix => nil, :path_prefix => "") | |
# This is the default route for /:controller/:action/:id | |
# This is fine for most cases. If you're heavily using resource-based | |
# routes, you may want to comment/remove this line to prevent | |
# clients from calling your create or destroy actions with a GET | |
# default_routes | |
# Change this for your home page to be available at / | |
match('/admin').to(:controller => 'default', :action =>'admin_login') | |
match('/').to(:controller => 'default', :action =>'index') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment