aboutsummaryrefslogtreecommitdiffstats
path: root/load_paths.rb
diff options
context:
space:
mode:
Diffstat (limited to 'load_paths.rb')
-rw-r--r--load_paths.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/load_paths.rb b/load_paths.rb
deleted file mode 100644
index d5f2ca0734..0000000000
--- a/load_paths.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-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