Skip to content

Commit

Permalink
Revert "Relaxed RubyGems dependency to 1.3.5 since 1.3.6 is apparentl…
Browse files Browse the repository at this point in the history
…y not available for Ubuntu yet and we only really needed this version to support the pre-release gem."

This reverts commit c39034f.

[spree#1209 state:resolved]
(cherry picked from commit 4a916a1)
  • Loading branch information
schof committed Mar 16, 2010
1 parent 429dcf7 commit 3698a77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/boot.rb
Expand Up @@ -37,8 +37,8 @@ module RubyGemsLoader
def load_rubygems
require 'rubygems'

unless rubygems_version >= '1.3.5'
$stderr.puts %(Spree requires RubyGems >= 1.3.5 (you have #{rubygems_version}). Please `gem update --system` and try again.)
unless rubygems_version >= '1.3.6'
$stderr.puts %(Spree requires RubyGems >= 1.3.6 (you have #{rubygems_version}). Please `gem update --system` and try again.)
exit 1
end

Expand All @@ -47,7 +47,7 @@ def load_rubygems
Gem::Dependency.warned_version_requirement = true

rescue LoadError
$stderr.puts %(Spree requires RubyGems >= 1.3.5. Please install RubyGems and try again: http://rubygems.rubyforge.org)
$stderr.puts %(Spree requires RubyGems >= 1.3.6. Please install RubyGems and try again: http://rubygems.rubyforge.org)
exit 1
end

Expand Down

0 comments on commit 3698a77

Please sign in to comment.