Yeah, in old Rails (2.x) the block created a map variable (you could observe
"do  |map|" in the first line) but in Rails 3 the API has changed and this
variable is not created anymore, hence you canĀ“t use it.

Rodrigo Vieira
Programmer

+55 (81) 98935478
http://www.rodrigoalvesvieira.com
https://github.com/rodrigoalvesvieira
http://twitter.com/#!/rodrigoalvieira




On Sun, Sep 4, 2011 at 3:42 PM, John Merlino <stoici...@aol.com> wrote:

> So I tried using the :as option for the named route so I could have
> dashboard_sidebar_path helpers.
>
>  scope :path => '/dashboard', :controller => :dashboard do
>      match '/sidebar.:format' => :sidebar, :as => 'dashboard_sidebar'
>       match '/charts.:format' => :charts
>      match '/action_items.:format' => :action_items
>      match '/performance.:format' => :performance
>  end
>
> However, strangely enough, it reports this error when using the
> dashboard_sidebar_path helper:
>
> No route matches {:controller=>"dashboard", :action=>"sidebar"}
>
>
> As you can see the controller is defined with :controller in the
> scope, so I dont know why the error.
>
> thanks for response
>
> On Aug 31, 5:42 pm, John Merlino <li...@ruby-forum.com> wrote:
> > I havent tested it yet but thanks for response
> >
> > --
> > Posted viahttp://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> To unsubscribe from this group, send email to
> rubyonrails-talk+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to