Exception: AbstractController::Helpers::DeprecatedMissingHelperError

Inherits:
LoadError show all
Defined in:
actionpack/lib/abstract_controller/helpers.rb

Instance Method Summary collapse

Methods inherited from LoadError

#is_missing?

Methods inherited from Exception

#as_json

Constructor Details

#initialize(error, path) ⇒ DeprecatedMissingHelperError

Returns a new instance of DeprecatedMissingHelperError.



28
29
30
31
32
33
34
35
36
37
38
# File 'actionpack/lib/abstract_controller/helpers.rb', line 28

def initialize(error, path)
  @error = error
  @path  = "helpers/#{path}.rb"
  set_backtrace error.backtrace

  if /^#{path}(\.rb)?$/.match?(error.path)
    super("Missing helper file helpers/%s.rb" % path)
  else
    raise error
  end
end