Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7644

Show
Ignore:
Timestamp:
09/27/07 05:04:02 (1 year ago)
Author:
ulysses
Message:

Avoid calling is_missing on LoadErrors. Closes #7460.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r7640 r7644  
    11*SVN* 
     2 
     3* Avoid calling is_missing on LoadErrors. Closes #7460. [ntalbott] 
    24 
    35* Move Railties' Dispatcher to ActionController::Dispatcher, introduce before_ and after_dispatch callbacks, and warm up to non-CGI requests.  [Jeremy Kemper] 
  • trunk/actionpack/lib/action_controller/helpers.rb

    r7438 r7644  
    174174          require_dependency module_path 
    175175          helper module_name.constantize 
    176         rescue LoadError => e 
     176        rescue MissingSourceFile => e 
    177177          raise unless e.is_missing? module_path 
    178178          logger.debug("#{name}: missing default helper path #{module_path}") if logger