Colin Law <[email protected]> wrote:

>On 21 August 2012 21:12, Tim Slattery <[email protected]> wrote:
>> I have a controller named RegistriesController. It contains a single
>> method:
>>
>> def edit
>>    @jolts_registry = JoltsRegistry.new
>> end
>>
>> This runs, and the associated view is invoked. That stops on line 9:
>>
>> <%= form_for @jolts_registry do |f| %>
>>
>> The message is:
>>
>> undefined method `jolts_registries_path' for
>> #<#<Class:0x184fdd4>:0x1cf7aa0>
>>
>> What does that mean?
>
>Have you put an entry for jolts_registries in routes.rb?  Probably
>something like
>resources :jolts_registries

I have 

match '/registries' => 'registries#edit;

It clearly finds the route, otherwise it wouldn't run the edit method
in registries_controller.

>form_for needs the route to generate the form tag.

Don't understand, which route?

-- 
Tim Slattery
[email protected]

-- 
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 https://groups.google.com/groups/opt_out.


Reply via email to