aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/load_error.rb
blob: b81ed0605e0478d5ba8f686aeb8b299c30b17225 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class LoadError
  # Returns true if the given path name (except perhaps for the ".rb"
  # extension) is the missing file which caused the exception to be raised.
  def is_missing?(location)
    location.sub(/\.rb$/, "") == path.to_s.sub(/\.rb$/, "")
  end
end