Rails-3.0.beta: Bundler requires RubyGems version 1.3.6
From FVue
Problem
Trying to install Rails-3.0.beta, I receive this error:
$ sudo gem install rails3b ERROR: Error installing rails3b: bundler requires RubyGems version >= 1.3.6
Solution
Update the ruby gems using this command:
$ sudo gem update -V
Now rails-3.0.beta can be installed using these commands:
$ sudo gem install rails3b $ sudo gem install rails --pre
Environment
- Ubuntu-9.04 (Jaunty Jackalope)
Journal
20100310
I can see rubygems-1.3.5 is installed with the command:
$ gem list rubygem *** LOCAL GEMS *** rubygems-update (1.3.5)
Advertisement