Created
April 28, 2011 22:52
-
-
Save rodrigo-galba/947515 to your computer and use it in GitHub Desktop.
exemplo de builder para feed com rails 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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