Ruby gem install y "No existe tal archivo para cargar"

Estoy escribiendo scripts con Ruby 1.9.2dev en Backtrack 5 pero tengo algunos problemas cuando intento analizar entidades html con la biblioteca "htmlentities".

No puedo cargar la biblioteca aunque la haya instalado con gem. Te mostraré los problemas que tengo en la consola:

root@bt:~# gem list -d htmlentities

*** LOCAL GEMS ***

htmlentities (4.3.1)
    Author: Paul Battley
    Homepage: https://github.com/threedaymonk/htmlentities
    Installed at: /var/lib/gems/1.9.2

    A module for encoding and decoding (X)HTML entities.

root@bt:~# irb  irb(main):001:0> require 'htmlentities'  LoadError: no such file to load -- htmlentities    
       from (irb):1:in `require'    
       from (irb):1     
       from /usr/bin/irb:12:in `<main>'

Este es el mismo problema que estoy teniendo con el nokogiri. Instalé la biblioteca con

gem install htmlentities

¿Tienes alguna idea de por qué tengo este problema?

Gracias

EDITADO:

Intenté también con require 'rubygems' previamente a cualquier otro require, pero sucede lo mismo:

Intenté requerir 'rubygems' pero está sucediendo lo mismo:

irb(main):001:0> require 'rubygems'
=> false
irb(main):002:0> require 'htmlentities'
LoadError: no such file to load -- htmlentities
    from (irb):2:in `require'
    from (irb):2
    from /usr/bin/irb:12:in `<main>'

Respuestas a la pregunta(4)

Su respuesta a la pregunta