Sha256: 87d498838c93edf4cf4c0ee256489705bf6e7953f55708b2a782cefc9af5d006
Contents?: true
Size: 646 Bytes
Versions: 375
Compression:
Stored size: 646 Bytes
Contents
= Builder 1.2.4 Released. Added a "CDATA" method to the XML Markup builder (from Josh Knowles). == What is Builder? Builder::XmlMarkup allows easy programmatic creation of XML markup. For example: builder = Builder::XmlMarkup.new(:target=>STDOUT, :indent=>2) builder.person { |b| b.name("Jim"); b.phone("555-1234") } puts builder.target! will generate: <person> <name>Jim</name> <phone>555-1234</phone> </person> == Availability The easiest way to get and install builder is via RubyGems ... gem install builder (you may need root/admin privileges) == Thanks * Josh Knowles for the cdata! patch. -- Jim Weirich
Version data entries
375 entries across 302 versions & 74 rubygems