Load issue with roo

could someone point me in the direction of a solution to this error?

$ irb
irb(main):001:0> require 'rubygems'
          => true
          irb(main):002:0> require 'roo'
                    LoadError: no such file to load -- builder
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
                    `gem_original_require'
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
                    `require'
                    from
                    /var/lib/gems/1.8/gems/roo-1.9.2/lib/roo/generic_spreadsheet.rb:4
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
                    `gem_original_require'
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in
                    `require'
                    from
                    /var/lib/gems/1.8/gems/roo-1.9.2/lib/roo.rb:67
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:36:in
                    `gem_original_require'
                    from
                    /usr/lib/ruby/1.8/rubygems/custom_require.rb:36:in
                    `require'
                    from (irb):2
                               irb(main):003:0>

thanks,
    reid

sudo gem install builder

···

On Tue, Feb 2, 2010 at 4:26 PM, Reid Thompson <reid.thompson@ateb.com> wrote:

could someone point me in the direction of a solution to this error?

thanks -- ultimately there were several missing gems. For some reason I
thought the installtion would pull in the required dependencies.

reid

···

On Tue, Feb 02, 2010 at 04:48:43PM -0500, Gregory Brown wrote:

On Tue, Feb 2, 2010 at 4:26 PM, Reid Thompson <reid.thompson@ateb.com> wrote:
> could someone point me in the direction of a solution to this error?

sudo gem install builder

Roo has some issues with it's packaging and overall project
organization that are less than desirable. I've been meaning to fork
and submit some patches, but I haven't yet found the time to do so.

-greg

···

On Tue, Feb 2, 2010 at 5:05 PM, Reid Thompson <reid.thompson@ateb.com> wrote:

On Tue, Feb 02, 2010 at 04:48:43PM -0500, Gregory Brown wrote:

On Tue, Feb 2, 2010 at 4:26 PM, Reid Thompson <reid.thompson@ateb.com> wrote:
> could someone point me in the direction of a solution to this error?

sudo gem install builder

thanks -- ultimately there were several missing gems. For some reason I
thought the installtion would pull in the required dependencies.

It would if they were declared:

501 % gem dep -r roo
Gem roo-1.9.2
  bones (>= 3.2.0, development)

This is why Hoe exists. Predefined structure. Easy to tweak. Last time I looked at bones I was scared.

···

On Feb 2, 2010, at 14:05 , Reid Thompson wrote:

On Tue, Feb 02, 2010 at 04:48:43PM -0500, Gregory Brown wrote:

On Tue, Feb 2, 2010 at 4:26 PM, Reid Thompson <reid.thompson@ateb.com> wrote:

could someone point me in the direction of a solution to this error?

sudo gem install builder

thanks -- ultimately there were several missing gems. For some reason I
thought the installtion would pull in the required dependencies.