I am getting an error that I cannot figure out:
ActionView::MissingTemplate (Missing template cluster/delete_stuff.erb in view path app/views) <...snip trace.
Turns out that I did not have a
render :something
in my controller method, so I guess Rails figured that there must be a "delete_stuff.erb" somewhere to know what to do. Added a render and the error message goes away.