Skip to content

Instantly share code, notes, and snippets.

@svenfuchs
Created July 12, 2009 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svenfuchs/145652 to your computer and use it in GitHub Desktop.
Save svenfuchs/145652 to your computer and use it in GitHub Desktop.
From 81c1231ce151f2e35af3d9ad7ea54cb3c988811a Mon Sep 17 00:00:00 2001
From: Sven Fuchs <svenfuchs@artweb-design.de>
Date: Sun, 12 Jul 2009 16:11:13 +0200
Subject: [PATCH] relax gem version requirement for I18n gem
---
activesupport/lib/active_support/vendor.rb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb
index 5b51af0..cf2af4a 100644
--- a/activesupport/lib/active_support/vendor.rb
+++ b/activesupport/lib/active_support/vendor.rb
@@ -21,8 +21,8 @@ rescue Gem::LoadError
end
begin
- gem 'i18n', '~> 0.1.3'
+ gem 'i18n', '>= 0.1.3'
rescue Gem::LoadError
$:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.1.3/lib"
- require 'i18n'
end
+require 'i18n'
--
1.6.0.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment