るりまサーチ

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

別のキーワード

  1. argf.class lines
  2. argf.class each
  3. argf.class each_line
  4. argf.class set_encoding
  5. _builtin status

ライブラリ

キーワード

検索結果

LoadError (49.0)

Kernel.#require や Kernel.#load が失敗したときに発生します。

...Kernel.#require Kernel.#load が失敗したときに発生します。...

Pathname (13.0)

パス名をオブジェクト指向らしく扱うクラスです。

...ムにアクセスするものもあります。

Pathname オブジェクトの生成には、Pathname.new のほかに Kernel#Pathname も使えます。

//emlist[例][ruby]{
require
'pathname'

Pathname.new("foo/bar") # => #<Pathname:foo/bar>
Pathname("foo/bar") # => #<Pathname:foo/bar>
//}...