public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Rails now requires rubygems 1.3.1 of higher.
lifo (author)
Fri Nov 14 03:39:40 -0800 2008
commit  549b18c9286b6cccf4978093576325fd711dc421
tree    167148f6e0a6bb738aba187c052e085e89c40a8e
parent  c562dfc2a7981351e2f9302c76456fae32da91b2
...
82
83
84
85
 
86
87
88
...
82
83
84
 
85
86
87
88
0
@@ -82,7 +82,7 @@ module Rails
0
 
0
       def load_rubygems
0
         require 'rubygems'
0
-        min_version = '1.1.1'
0
+        min_version = '1.3.1'
0
         unless rubygems_version >= min_version
0
           $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
0
           exit 1

Comments

wtn Sat Nov 22 00:38:52 -0800 2008

This is causing problems for me on OS X 10.5.5, as I encounter the following issue: bash-3.2# gem update—system Updating RubyGems Nothing to update bash-3.2# gem -v 1.2.0

wtn Sat Nov 22 00:43:22 -0800 2008

Another oddity: bash-3.2# /Library/Ruby/Gems/1.8/gems/rubygems-update-1.3.1/bin/gem -v 1.2.0

jfernandez Sat Nov 22 09:32:57 -0800 2008

$ sudo gem install rubygems-update Successfully installed rubygems-update-1.3.0 1 gem installed $ sudo update_rubygems Installing RubyGems 1.3.0

wtn Mon Nov 24 14:50:07 -0800 2008

Thanks for the tip on using update_rubygems. I figured out that 1.3.1 installed correctly when I downloaded the tarball and ran the install script. I apologize for posting here.