From 3b92b141fd0759476690a174d5e2f8f0f2d9f1b7 Mon Sep 17 00:00:00 2001 From: Yaroslav Markin Date: Sun, 28 Dec 2008 23:33:08 +0300 Subject: [PATCH] Fix 'i18n' require broken by 0.0.1 -> 0.1.1 commit [#1658 state:committed] Signed-off-by: David Heinemeier Hansson --- activesupport/lib/active_support/vendor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb index bf3e99e87bc3f..3d7d52ca71199 100644 --- a/activesupport/lib/active_support/vendor.rb +++ b/activesupport/lib/active_support/vendor.rb @@ -24,6 +24,6 @@ # begin # gem 'i18n', '~> 0.1.1' # rescue Gem::LoadError - $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.1.1" + $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.1.1/lib" require 'i18n' # end