<response>@model.to_xml</response>
追加のresponse
モデルを作成せずに、コントローラー アクションの XML 応答をラップする簡単な方法はありますか?
は次のrespond_with
ようになります。
respond_with(@model, :status => :accepted, :location => nil) do |format|
format.xml { render :xml => @model.to_xml(:dasherize => false) }
end