Changeset 4625
- Timestamp:
- 07/27/06 15:31:07 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/routing.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4624 r4625 1 1 *SVN* 2 3 * Don't search a load-path of '.' for controller files [Jamis Buck] 2 4 3 5 * Update integration.rb to require test_process explicitly instead of via Dependencies. [Nicholas Seckar] trunk/actionpack/lib/action_controller/routing.rb
r4611 r4625 81 81 @possible_controllers = [] 82 82 83 paths = $LOAD_PATH.select { |path| File.directory? path}83 paths = $LOAD_PATH.select { |path| File.directory?(path) && path != "." } 84 84 85 85 seen_paths = Hash.new {|h, k| h[k] = true; false}