Is your controller class spelled correctly? You have > class CoController < ApplicationController
but are trying to reference a controller called cocore which would be class CocoreController. That may be why you are seeing the error. B. On Mon, Feb 21, 2011 at 7:30 PM, Phil Crissman <[email protected]> wrote: > > Phil > > > On Mon, Feb 21, 2011 at 7:06 PM, John Merlino <[email protected]> wrote: >> >> Hey all, >> >> I have this in routes: >> >> resources :cocore do >> collection do >> get :cocoreim >> end >> end >> >> I have this in ccore controller: >> >> class CoController < ApplicationController >> def index >> end >> >> def cocoreim >> render 'cocoreim' >> end >> end >> >> In indx.html.erb of cocore view directory, I have this: >> >> <% link_to 'CoCore', cocoreim_cocore_path %> >> >> I get undefined local variable or method cocoreim_cocore_path when >> trying to access the cocore controller page, even though cocore/cocoreim >> page renders fine. >> >> Why? I thought using collection block produces a helper which is a >> concatenation of the collection get method and the parent resource >> method. So what am I missing here? >> > > Check rake routes. Is the route there? > >> >> Thanks for response. >> >> -- >> Posted via http://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 [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> 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 [email protected]. > To unsubscribe from this group, send email to > [email protected]. > 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

