aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorSven Fuchs <svenfuchs@artweb-design.de>2008-08-13 09:44:46 +0200
committerSven Fuchs <svenfuchs@artweb-design.de>2008-08-13 09:44:46 +0200
commitbfa143fd4d15544e788d25ec163f9cc57a1e2a03 (patch)
tree6952fee00c59c724db7fb71cd8790642196bfab2 /activesupport/lib/active_support
parent572f73fae62972cc5aebba24bed45a127f2a4cac (diff)
downloadrails-bfa143fd4d15544e788d25ec163f9cc57a1e2a03.tar.gz
rails-bfa143fd4d15544e788d25ec163f9cc57a1e2a03.tar.bz2
rails-bfa143fd4d15544e788d25ec163f9cc57a1e2a03.zip
fix require path in vendor.rb for fixed vendor/gem dir structure
Diffstat (limited to 'activesupport/lib/active_support')
-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 381471b833..acd94af783 100644
--- a/activesupport/lib/active_support/vendor.rb
+++ b/activesupport/lib/active_support/vendor.rb
@@ -29,6 +29,6 @@ end
# begin
# gem 'i18n', '~> 0.0.1'
# rescue Gem::LoadError
- $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.0.1/lib"
+ $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.0.1"
require 'i18n'
# end \ No newline at end of file