るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.077秒)

別のキーワード

  1. クラス/メソッドの定義
  2. クラス/メソッドの定義 proc
  3. クラス/メソッドの定義 class
  4. クラス
  5. クラス/メソッドの定義 module

ライブラリ

検索結果

LoadError#path -> String | nil (6134.0)

Kernel.#require や Kernel.#load に失敗したパスを返します。

...
Kernel
.#require や Kernel.#load に失敗したパスを返します。

begin
require 'this/file/does/not/exist'
rescue LoadError => e
e.path # => 'this/file/does/not/exist'
end

パスが定まらない場合は nil を返します。...