るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.048秒)
トップページ > クエリ:Kernel.#p[x] > クエリ:$5[x] > クエリ:chop[x] > クエリ:SCRIPT_LINES__[x] > クラス:LoadError[x]

別のキーワード

  1. openssl ia5string
  2. socket tcp_md5sig
  3. net/imap md5
  4. asn1 ia5string
  5. encoding big5_uao

ライブラリ

検索結果

LoadError#path -> String | nil (6133.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 を返します。...