[Rails] Re: Missing Template with edge Rails (2.3)

2009-01-05 Thread Rich
It's not just create, it's seemingly all my actions. I just found this though: http://rails.lighthouseapp.com/projects/8994/tickets/1590-xhrs-require-explicit-respond_to On Jan 5, 6:28 pm, Ryan Bigg wrote: > It's trying to render a create view and generally create actions don't   > have a view,

[Rails] Re: Missing Template with edge Rails (2.3)

2009-01-05 Thread Ryan Bigg
It's trying to render a create view and generally create actions don't have a view, they just redirect somewhere (probably to the object that was just created). Make sure in your controller that it's definitely redirecting or doing *something* other than trying to render that view. - Rya

[Rails] Re: Missing Template with edge Rails (2.3)

2009-01-05 Thread Rich
Correction: I meant 'respond_to', not 'respond_do'. On Jan 3, 11:17 pm, Rich wrote: > After freezing edge rails, all my controller examples are failing with > MissingTemplate errors. > e.g., "Missing template attachments/create.erb in view path app/views" > > Trying to actually render the views