A usual usage of respond_to
is like
respond_to do |format|
format.html
format.xml { render :xml => @data }
end
can it be made so that when the format is not supported (such as json or csv not being supported above), instead of returning nothing, return a text line saying "the format is not supported", or better yet, have it automatically report "only html and xml is supported"? It can know only html and xml are supported by the existing format.html
and format.xml
lines there. (if possible)