別のキーワード
ライブラリ
-
irb
/ ext / history (24) -
irb
/ ext / save-history (108) -
irb
/ extend-command (12) - readline (204)
-
rubygems
/ specification (24)
クラス
-
Gem
:: Specification (24) -
IRB
:: Context (84)
モジュール
-
IRB
:: ContextExtender (12) -
IRB
:: HistorySavingAbility (36) - Readline (12)
オブジェクト
-
Readline
:: HISTORY (168)
キーワード
- << (12)
- HistorySavingAbility (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 2
. 5 . 0 (8) - Readline (12)
-
SPECIFICATION
_ VERSION _ HISTORY (12) - [] (12)
- []= (12)
- clear (12)
-
delete
_ at (12) - each (24)
- empty? (12)
-
eval
_ history (12) -
eval
_ history= (12) - extended (12)
-
history
_ file (12) -
history
_ file= (12) -
init
_ save _ history (12) -
install
_ extend _ commands (12) - irb (12)
-
irb
/ ext / history (12) -
irb
/ ext / save-history (12) - length (12)
-
load
_ history (12) - pop (12)
- push (12)
- readline (12)
-
save
_ history (24) -
save
_ history= (12) - shift (12)
- size (12)
-
specification
_ version= (12) -
test
/ unit (12) -
to
_ s (12)
検索結果
先頭5件
-
Readline
:: HISTORY (18032.0) -
Readline::HISTORY を使用してヒストリにアクセスできます。 Enumerable モジュールを extend しており、 Array クラスのように振る舞うことができます。 例えば、HISTORY[4] により 5 番目に入力した内容を取り出すことができます。
...Readline::HISTORY を使用してヒストリにアクセスできます。
Enumerable モジュールを extend しており、
Array クラスのように振る舞うことができます。
例えば、HISTORY[4] により 5 番目に入力した内容を取り出すことができます。... -
IRB
:: HistorySavingAbility # load _ history -> () (9107.0) -
irb のヒストリを履歴ファイルから読み込みます。
...irb のヒストリを履歴ファイルから読み込みます。
@see lib:irb#history... -
IRB
:: HistorySavingAbility # save _ history -> () (9107.0) -
irb のヒストリを履歴ファイルに保存します。
...irb のヒストリを履歴ファイルに保存します。
@see lib:irb#history... -
IRB
:: Context # eval _ history=(val) (6113.0) -
実行結果の履歴の最大保存件数を val に設定します。
...実行結果の履歴の最大保存件数を val に設定します。
.irbrc ファイル中で IRB.conf[:EVAL_HISTORY] を設定する事でも同様の事が
行えます。
@param val 実行結果の履歴の最大保存件数を Integer か nil で指定し
ます。0 を指定......た場合は無制限に履歴を保存します。現在の値よ
りも小さい値を指定した場合は履歴がその件数に縮小されます。
nil を指定した場合は履歴の追加がこれ以上行われなくなります。
@see IRB::Context#eval_history... -
IRB
:: Context # history _ file -> String | nil (6113.0) -
履歴ファイルのパスを返します。
...履歴ファイルのパスを返します。
@return 履歴ファイルのパスを String か nil で返します。nil を返し
た場合は、~/.irb_history に履歴が保存されます。
@see lib:irb#history... -
IRB
:: Context # history _ file=(hist) (6113.0) -
履歴ファイルのパスを val に設定します。
...履歴ファイルのパスを val に設定します。
.irbrc ファイル中で IRB.conf[:HISTORY_FILE] を設定する事でも同様の事が
行えます。
@param hist 履歴ファイルのパスを文字列で指定します。
@see lib:irb#history... -
IRB
:: Context # save _ history=(val) (6113.0) -
履歴の最大保存件数を val に設定します。
...履歴の最大保存件数を val に設定します。
.irbrc ファイル中で IRB.conf[:SAVE_HISTORY] を設定する事でも同様の事が
行えます。
@param val 履歴の最大保存件数を Integer で指定します。0 以下や
nil を返した場合は追加の保存......は行いません。現在の件数より小さ
い値を設定した場合は、最新の履歴から指定した件数分のみが保存
されます。
@see lib:irb#history... -
IRB
:: Context # eval _ history -> Integer | nil (6107.0) -
実行結果の履歴の最大保存件数を Integer か nil で返します。
...履歴の最大保存件数を Integer か nil で返します。
@return 履歴の最大保存件数を Integer か nil で返します。0 を返し
た場合は無制限に保存します。nil を返した場合は追加の保存は行いません。
@see IRB::Context#eval_history=... -
IRB
:: Context # save _ history -> Integer | nil (6107.0) -
履歴の最大保存件数を Integer か nil で返します。
...履歴の最大保存件数を Integer か nil で返します。
@return 履歴の最大保存件数を Integer か nil で返します。0 以下や
nil を返した場合は追加の保存は行いません。
@see lib:irb#history...