28件ヒット
[1-28件を表示]
(0.035秒)
種類
- 特異メソッド (12)
- インスタンスメソッド (12)
- ライブラリ (4)
ライブラリ
-
irb
/ ext / math-mode (12) -
irb
/ extend-command (12)
クラス
-
IRB
:: Context (12)
モジュール
-
IRB
:: ContextExtender (12)
キーワード
-
install
_ extend _ commands (12) - irb (4)
- math? (4)
-
math
_ mode= (4)
検索結果
先頭5件
-
IRB
:: Context # math _ mode -> bool (18135.0) -
math_mode が有効かどうかを返します。
...
math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?... -
IRB
:: Context # math _ mode=(opt) (9153.0) -
math_mode を有効にするかどうかを指定します。
...
math_mode を有効にするかどうかを指定します。
.irbrc ファイル中で IRB.conf[:MATH_MODE] を設定する事でも同様の事が行え
ます。
mathn ライブラリを include するため、math_mode を有効にした後は
無効にする事ができません。
@param o......pt math_mode を有効にする場合に true を指定します。
@raise IRB::CantReturnToNormalMode 既に math_mode の状態で opt に
false か nil を指定した場合に発生します。
@see IRB::Context#math_mode... -
IRB
:: Context # math? -> bool (3035.0) -
math_mode が有効かどうかを返します。
...
math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?... -
IRB
:: ContextExtender . install _ extend _ commands -> object (3012.0) -
定義済みの拡張を読み込みます。
...。
IRB::Context で以下のメソッドが利用できるようになります。
* eval_history=
* use_tracer=
* math_mode=
* use_loader=
* save_history=
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see IRB::ContextExtender.def... -
irb (60.0)
-
irb は Interactive Ruby の略です。 irb を使うと、Ruby の式を標準入力から簡単に入力・実行することができます。
...行なう。デフォルト値は 16。
--context-mode n 新しいワークスペースを作成した時に関連する Binding
オブジェクトの作成方法を 0 から 3 で設定する。
(IRB::Context 参照)
--single-irb irb 中で self を......EOF] = true
IRB.conf[:IGNORE_SIGINT] = true
IRB.conf[:INSPECT_MODE] = nil
IRB.conf[:IRB_NAME] = "irb"
IRB.conf[:IRB_RC] = nil
IRB.conf[:MATH_MODE] = false
IRB.conf[:PROMPT] = {....}
IRB.conf[:PROMPT_MODE] = :DEFAULT
IRB.conf[:SINGLE_IRB] = false
IRB.conf[:SAVE_HISTORY] = nil
IRB.......IRB.conf[:USE_READLINE] = nil
IRB.conf[:USE_TRACER] = true
IRB.conf[:VERBOSE] = true
それぞれの設定値の詳細については、IRB::Context を参照してください。
====[a:customize_prompt] プロンプトのカスタマイズ
irb のプロンプトをカスタマイズした...