HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/builder-3.2.4/doc/releases/builder-1.2.4.rdoc
= 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