The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
What's New in Edge Rails: Shallow Routes

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
rwdaigle

Posts: 312
Nickname: rwdaigle
Registered: Feb, 2003

Ryan is a passionate ruby developer with a strong Java background.
What's New in Edge Rails: Shallow Routes Posted: Sep 7, 2008 3:16 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by rwdaigle.
Original Post: What's New in Edge Rails: Shallow Routes
Feed Title: Ryan's Scraps
Feed URL: http://feeds.feedburner.com/RyansScraps
Feed Description: Ryan Daigle's various technically inclined rants along w/ the "What's new in Edge Rails" series.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by rwdaigle
Latest Posts From Ryan's Scraps

Advertisement

Rails’ routing mechanism is pretty slick. In a very intuitive way you’re able to describe the resources you want exposed at the URL level with this routing-DSL:

1
2
3
4
5
map.resources :users do |user|
  user.resources :articles do |article|
    article.resourcs :comments
  end
end

However, while this configuration makes articles available at /users/1/articles and comments at /users/1/articles/1/comments there are often times when you want to bypass the full nested hierarchy and directly access the resource in question. Now, with the shallow route option, you can.

1
2
3
4
5
map.resources :users, :shallpow => true do |user|
  user.resources :articles do |article|
    article.resourcs :comments
  end
end

This configuration keeps all the normal nested routes and give you direct routes as well:

1
2
3
articles_path #=> '/articles'
comments_path #=> '/comments'
article_comments_path(@article) #=> '/articles/1/comments'

No longer do you need to separately declare direct routes in addition to nested routes, the :shallow option automatically make all necessary routes.

tags: ruby, rubyonrails

Read: What's New in Edge Rails: Shallow Routes

Topic: RubyLearning's Sponsor Locaweb Rocks! Previous Topic   Next Topic Topic: Fizz Buzz Buzz Fizz

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use