Revert "Fix test load paths for those not using bundler"

This reverts commit eec2d301d4.

This commit broke tests. You cannot have a file called "bundler" on the load path.
This commit is contained in:
Carlhuda
2010-02-23 17:31:17 -08:00
parent 5e2bd08023
commit 24ab5665b2
22 changed files with 50 additions and 93 deletions

21
load_paths.rb Normal file
View File

@@ -0,0 +1,21 @@
begin
require File.expand_path('../.bundle/environment', __FILE__)
rescue LoadError
begin
require 'rubygems'
require 'bundler'
Bundler.setup
rescue LoadError
%w(
actionmailer
actionpack
activemodel
activerecord
activeresource
activesupport
railties
).each do |framework|
$:.unshift File.expand_path("../#{framework}/lib", __FILE__)
end
end
end