Fixes #242. Use the bundled copy of activerecord

git-svn-id: file:///home/svn/framework3/trunk@5861 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2008-11-09 21:54:04 +00:00
parent 7367c2cbd4
commit 3b79f24500
1 changed files with 9 additions and 1 deletions

View File

@ -26,6 +26,14 @@ class DBManager
@usable = false @usable = false
@active = false @active = false
#
# Prefer our local copy of active_record
#
dir_ar = File.join(Msf::Config.data_directory, 'msfweb', 'vendor', 'rails', 'activerecord', 'lib')
if(File.directory?(dir_ar) and not $:.include?(dir_ar))
$:.unshift(dir_ar)
end
# Load ActiveRecord if it is available # Load ActiveRecord if it is available
begin begin
require 'rubygems' require 'rubygems'