aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorYaroslav Markin <yaroslav@markin.net>2008-12-28 23:33:08 +0300
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-12-28 21:34:57 +0100
commit3b92b141fd0759476690a174d5e2f8f0f2d9f1b7 (patch)
treeaa4bb42b5c24de8bdc2f76a741b4d60b23dfd010 /activesupport/lib
parent1648df79b78d07c7713a75313b53db61a14a77bc (diff)
downloadrails-3b92b141fd0759476690a174d5e2f8f0f2d9f1b7.tar.gz
rails-3b92b141fd0759476690a174d5e2f8f0f2d9f1b7.tar.bz2
rails-3b92b141fd0759476690a174d5e2f8f0f2d9f1b7.zip
Fix 'i18n' require broken by 0.0.1 -> 0.1.1 commit [#1658 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/vendor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb
index bf3e99e87b..3d7d52ca71 100644
--- a/activesupport/lib/active_support/vendor.rb
+++ b/activesupport/lib/active_support/vendor.rb
@@ -24,6 +24,6 @@ end
# 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