JRuby 1.1.1 のgemが動かない。

~ > jgem list -r

*** REMOTE GEMS ***

Bulk updating Gem source index for: http://gems.rubyforge.org/
ERROR:  While executing gem ... (Gem::RemoteSourceException)
    Error fetching remote gem cache: NameError: uninitialized constant Gem::RemoteFetcher::StringIO reading http://gems.rubyforge.org/yaml

というエラーが出る。Gem::RemoteFetcher::StringIOが何者か調べるなどしている。

追記

一応解決したのでご報告。なんてことはない、requireし忘れ。
$JRUBY_HOME/lib/ruby/site_ruby/1.8/rubygems/remote_fetcher.rb のはじめに以下の行を追加。

require 'stringio'