Exception: AbstractController::Helpers::MissingHelperError
Constant Summary
Constants inherited from LoadError
Instance Method Summary collapse
-
#initialize(error, path) ⇒ MissingHelperError
constructor
A new instance of MissingHelperError.
Methods inherited from LoadError
Constructor Details
#initialize(error, path) ⇒ MissingHelperError
Returns a new instance of MissingHelperError.
16 17 18 19 20 21 22 23 24 25 26 |
# File 'actionpack/lib/abstract_controller/helpers.rb', line 16 def initialize(error, path) @error = error @path = "helpers/#{path}.rb" set_backtrace error.backtrace if error.path =~ /^#{path}(\.rb)?$/ super("Missing helper file helpers/%s.rb" % path) else raise error end end |