diff options
author | Rizwan Reza <rizwanreza@gmail.com> | 2010-06-07 21:52:56 +0430 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-06-07 14:53:37 -0400 |
commit | 3adb395da4f11693c20cc331271d5927f96acac8 (patch) | |
tree | 7c75077b2beab0804b622d34a503cafc43a5acde /activesupport | |
parent | ed16ec634485c34556e0df889d549c0aa9ccd393 (diff) | |
download | rails-3adb395da4f11693c20cc331271d5927f96acac8.tar.gz rails-3adb395da4f11693c20cc331271d5927f96acac8.tar.bz2 rails-3adb395da4f11693c20cc331271d5927f96acac8.zip |
Fixed Load Error failures in 1.9.2-head
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/load_error.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/load_error.rb b/activesupport/lib/active_support/core_ext/load_error.rb index 615ebe9588..8bdfa0c5bc 100644 --- a/activesupport/lib/active_support/core_ext/load_error.rb +++ b/activesupport/lib/active_support/core_ext/load_error.rb @@ -3,6 +3,7 @@ class LoadError /^no such file to load -- (.+)$/i, /^Missing \w+ (?:file\s*)?([^\s]+.rb)$/i, /^Missing API definition file in (.+)$/i, + /^cannot load such file -- (.+)$/i, ] def path |