aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2006-07-27 15:31:07 +0000
committerJamis Buck <jamis@37signals.com>2006-07-27 15:31:07 +0000
commitd70d5219554b55b24586d559bd39d829317d523d (patch)
treeac0fb079e692a4861b36b4c34f0ac93617b58381 /actionpack/lib
parent9d17f882eee6a2e037e4da81a933d37289d0bf8a (diff)
downloadrails-d70d5219554b55b24586d559bd39d829317d523d.tar.gz
rails-d70d5219554b55b24586d559bd39d829317d523d.tar.bz2
rails-d70d5219554b55b24586d559bd39d829317d523d.zip
Don't search a load-path of '.' for controller files, since it may include symlinks to all kinds of things and result in far too many irrelevant files being considered
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4625 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/routing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb
index a91019d418..835758675e 100644
--- a/actionpack/lib/action_controller/routing.rb
+++ b/actionpack/lib/action_controller/routing.rb
@@ -80,7 +80,7 @@ module ActionController
unless @possible_controllers
@possible_controllers = []
- paths = $LOAD_PATH.select { |path| File.directory? path }
+ paths = $LOAD_PATH.select { |path| File.directory?(path) && path != "." }
seen_paths = Hash.new {|h, k| h[k] = true; false}
normalize_paths(paths).each do |load_path|