Patch for ruby1.9.3 compatibility.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8234 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-12-15 12:29:02 +00:00 committed by Felix Schäfer
parent 611889f3f7
commit 0d69fa6bb1
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@
# See doc/COPYRIGHT.rdoc for more details.
#++
# Patches active_support/core_ext/load_error.rb to support 1.9.3 LoadError message
if RUBY_VERSION >= '1.9.3'
MissingSourceFile::REGEXPS << [/^cannot load such file -- (.+)$/i, 1]
end
require 'active_record'