I had problems with builder.
I installed builder gem on my ubuntu 7.x machine with ruby 1.8.6 and installed irb
require 'rubygems/builder'
x = Builder::XmlMarkup.new(:target => $stdout, :indent => 1)
running the above throws me an error texting
uninitialized constant Builder (NameError)
what might be the obvious reason? am I missing any fine grain here?
|