aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/helpers.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-25 09:07:01 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-25 09:07:01 +0000
commit45137795e8db0c47c0bc16712b0a24807459e252 (patch)
treed6edb02c996e43e638cf0e473adaa6ac61321976 /actionpack/lib/action_controller/helpers.rb
parenta5c694283010c05ee39bc0757e8013b3aa382992 (diff)
downloadrails-45137795e8db0c47c0bc16712b0a24807459e252.tar.gz
rails-45137795e8db0c47c0bc16712b0a24807459e252.tar.bz2
rails-45137795e8db0c47c0bc16712b0a24807459e252.zip
Fixed that MissingSourceFile's wasn't properly detected in production mode #925 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@990 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/helpers.rb')
-rw-r--r--actionpack/lib/action_controller/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/helpers.rb b/actionpack/lib/action_controller/helpers.rb
index 1db8a3ceba..ef58d38021 100644
--- a/actionpack/lib/action_controller/helpers.rb
+++ b/actionpack/lib/action_controller/helpers.rb
@@ -93,7 +93,7 @@ module ActionController #:nodoc:
inherited_without_helper(child)
begin child.helper(child.controller_path)
rescue MissingSourceFile => e
- raise unless e.path == "helpers/#{child.controller_path}_helper.rb"
+ raise unless e.is_missing?("helpers/#{child.controller_path}_helper")
end
end
end