builder icon indicating copy to clipboard operation
builder copied to clipboard

Provide a simple way to create XML markup and data structures.

Results 16 builder issues
Sort by recently updated
recently updated
newest added

Update broken documentation link

A new version of builder, 3.2.3, was published to [Rubygems on Jan 13, 2017](https://rubygems.org/gems/builder/versions/3.2.3) from the @tenderlove's fork: https://github.com/tenderlove/builder/commit/4566addca4ec766db7e8a9dac758d0b47c85fda0 Just noting to save anyone a few minutes of sleuthing.

Fixnum and Bignum are combined into Integer class Since Ruby-2.4.0 release. This fix is to remove all Fixnum reference.

it would be great to push git tags for all versions published on rubygems. Could you please push a 3.2.3 git tag an all future releases? thanks

Step by step: [2] pry(main)> require 'builder' => true [3] pry(main)> xml = Builder::XmlMarkup.new => [4] pry(main)> xml.instruct! => nil xml.instruct! always returns nil, independently of the parameters passed to...

require 'builder' builder = ::Builder::XmlMarkup.new(:target=>@output, :indent=>2) builder.result{ builder.total_prospects "1" builder.prospect { |b| b.text

For users and contributors. See https://github.com/jimweirich/builder/issues/56#issuecomment-296289006 for detail.

I want to run unit test for the development. But I saw an error when I checked rake tasks. Could you tell me how to do it? Does Travis CI...