RubyGems 1.0.0

Eric H. wrote:

On Dec 22, 2007, at 10:38 AM, Jonathan Hernandez wrote:

installed). If i do:

~/rubygems-0.9.2# gem update --system
(…)
~/rubygems-0.9.2# gem -v
/usr/local/bin/gem:23: uninitialized constant Gem::GemRunner
(NameError)

I know from other installs that rubygems 0.9.5 works perfectly with
ruby
1.8.6 (ubuntu’s apt).

Can you get a complete install log?

For sure, I can reproduce the problem if i return back to rubygems 0.9.2
and updating again to 1.0.1 with gem update --system.

I attached the complete log.

On Dec 24, 2007, at 09:47 AM, Jonathan Hernandez wrote:

I know from other installs that rubygems 0.9.5 works perfectly with

Attachments:

cp gem /tmp/gem
install -c -m 0755 /tmp/gem /usr/bin/gem1.8

Use gem1.8.

I will add a note about the name of gem in the next revision of
RubyGems.

Thanks Eric,

Can I see gem env output?
emailagent@:~$ gem env
RubyGems Environment:

  • VERSION: 0.9.4 (0.9.4)
  • INSTALLATION DIRECTORY:
    /usr/local/home/emailagent/ruby-1_8_4/lib/ruby/gems/1.8
  • GEM PATH:
    • /usr/local/home/emailagent/ruby-1_8_4/lib/ruby/gems/1.8
  • REMOTE SOURCES:

Also, what version of RubyGems was used to build the gem? 0.9.5

Eric H. wrote:

On Dec 24, 2007, at 09:47 AM, Jonathan Hernandez wrote:

I know from other installs that rubygems 0.9.5 works perfectly with

Attachments:

cp gem /tmp/gem
install -c -m 0755 /tmp/gem /usr/bin/gem1.8

Use gem1.8.

I will add a note about the name of gem in the next revision of
RubyGems.

Yes, using gem1.8 works nice.

gem1.8 -v

1.0.1

Short workaround for others in the same situation. Do a symlink:

mv /usr/bin/gem /usr/bin/gem.bak
ln -s /usr/bin/gem1.8 /usr/bin/gem

Regards,