跳至内容 跳至搜索
方法

实例公共方法

is_missing?(location)

如果给定路径名(可能除了“.rb”扩展名)是导致抛出异常的缺失文件,则返回 true。

# File activesupport/lib/active_support/core_ext/load_error.rb, line 6
def is_missing?(location)
  location.delete_suffix(".rb") == path.to_s.delete_suffix(".rb")
end