Skip to content

Instantly share code, notes, and snippets.

@rodrigo-galba
Created April 28, 2011 22:52
Show Gist options
  • Save rodrigo-galba/947515 to your computer and use it in GitHub Desktop.
Save rodrigo-galba/947515 to your computer and use it in GitHub Desktop.
exemplo de builder para feed com rails 3
xml.rss :version => "2.0" do
xml.channel do
xml.title "Loja de carros"
xml.link "http://localhost:3000"
xml.description "RSS da loja de carros"
xml.language 'pt-br'
@carros.each do |carro|
xml.item do
xml.title do
xml.title carro.nome
xml.description carro.descricao
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment