diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-14 03:32:35 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-14 03:32:35 -0800 |
commit | 74e1ff9dc2ebd86c783a274710e2f762059e818b (patch) | |
tree | 87c0bd7d66dc9be4938ca32a690375b6eb0ded5c /activesupport/lib | |
parent | 3ee9b8f2b28ecbff08617fba9a224b49ad7ad57e (diff) | |
download | rails-74e1ff9dc2ebd86c783a274710e2f762059e818b.tar.gz rails-74e1ff9dc2ebd86c783a274710e2f762059e818b.tar.bz2 rails-74e1ff9dc2ebd86c783a274710e2f762059e818b.zip |
Loosen optional gem deps from ~> to >=
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/vendor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb index 4a711b7e25..eb5080888c 100644 --- a/activesupport/lib/active_support/vendor.rb +++ b/activesupport/lib/active_support/vendor.rb @@ -9,7 +9,7 @@ end unless ActiveSupport.requirable? lib # Try to activate a gem ~> satisfying the requested version first. begin - gem lib, "~> #{version}" + gem lib, ">= #{version}" # Use the vendored lib if the gem's missing or we aren't using RubyGems. rescue LoadError, NoMethodError # There could be symlinks |