1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
atom_feed do |feed| feed.title("The Four Island Quotes DB") feed.updated(@quotes.first.created_at) @quotes.each do |quote| feed.entry(quote) do |entry| entry.title("##{quote.id}") entry.content(quote_format(quote.content), :type => 'html') end end end ter' type='application/atom+xml'/>