viewで.rhtmlの代わりに.rxmlを使うだけ。サンプルは「Rails Cookbook」より。一部変更している箇所にはコメントを入れています。 まずは、app/controllers/xml_controller.rb。普通に作ります。 class XmlController < ApplicationController def rss @feed_title = "O'Reilly Books" @books = Book.find(:all, :order => "est_release_date desc", :limit => 2) # app/view/layout/application.rhtmlがあるとまずいので render :layout => false end end 次に、app/views/xml/rss.rxml。拡張子が.rhtmlではなく、.rx