Created
September 4, 2009 21:04
-
-
Save tenderlove/181130 to your computer and use it in GitHub Desktop.
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
require 'nokogiri' | |
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml| | |
xml.feed( | |
:xmlns => 'http://www.w3.org/2005/Atom', | |
'xmlns:osa' => 'http://www.onespot.com/Atom/Extensions/1.0' | |
) do | |
xml.title 'feed title', :type => "html" | |
xml.entry do |ctx| | |
### | |
# default namespace | |
xml.title 'entry title', :type => "html" | |
### | |
# "osa" namespace | |
xml[:osa].score(0.50) | |
### | |
# All of these tags belong to the "onespot" namespace | |
ctx.with_namespace(:osa) do | |
xml.foo(0.50) | |
xml.bar(0.50) | |
### | |
# Including these tags | |
xml.baz do | |
xml.yay | |
end | |
end | |
end | |
end | |
end.to_xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment