24件ヒット
[1-24件を表示]
(0.104秒)
ライブラリ
- ビルトイン (12)
クラス
- Module (12)
-
RDoc
:: Options (12)
検索結果
-
RDoc
:: Options # warn(message) -> nil (21102.0) -
--verbose オプションを指定していた場合に message を 標準エラー出力 $stderr に出力します。
...--verbose オプションを指定していた場合に message を 標準エラー出力
$stderr に出力します。... -
Module
# const _ missing(name) (3007.0) -
定義されていない定数を参照したときに Ruby インタプリタが このメソッドを呼びます。
...mbol
@raise NameError このメソッドを呼び出した場合、デフォルトで発生する例外
//emlist[例][ruby]{
class Foo
def Foo.const_missing(id)
warn "undefined constant #{id.inspect}"
end
Bar
end
Foo::Bar
# => undefined constant :Bar
# undefined constant :Bar
//}...