るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.075秒)
トップページ > クエリ:Kernel.#p[x] > クエリ:gets[x] > クエリ:try_run[x] > バージョン:2.1.0[x] > クエリ:$2[x] > クラス:LoadError[x]

別のキーワード

  1. _builtin gets
  2. _builtin try_convert
  3. irb/input-method gets
  4. io gets
  5. argf.class gets

ライブラリ

検索結果

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