別のキーワード
種類
- インスタンスメソッド (106)
- 文書 (52)
- 特異メソッド (46)
- クラス (24)
- ライブラリ (24)
ライブラリ
- ビルトイン (20)
-
irb
/ cmd / load (24) -
irb
/ context (12) -
irb
/ ext / use-loader (48) -
irb
/ extend-command (36) - openssl (24)
- rake (12)
クラス
-
IRB
:: Context (48) -
IRB
:: ExtendCommand :: Load (12) -
OpenSSL
:: X509 :: ExtensionFactory (12) -
Rake
:: Application (12) -
RubyVM
:: InstructionSequence (20)
モジュール
-
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (36)
キーワード
- Config (12)
-
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 1 . 0 (4) -
add
_ loader (12) - config= (12)
-
def
_ extend _ command (24) - execute (12)
-
install
_ extend _ commands (12) -
irb
/ ext / loader (12) -
irb
/ ext / use-loader (12) -
irb
_ load (12) -
load
_ from _ binary _ extra _ data (10) -
load
_ modules (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
to
_ binary (10) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12)
検索結果
先頭5件
-
IRB
:: ExtendCommand :: Load (21016.0) -
irb 中の irb_load コマンドのための拡張を定義したクラスです。
...irb 中の irb_load コマンドのための拡張を定義したクラスです。... -
IRB
:: ContextExtender . def _ extend _ command(cmd _ name , load _ file , *aliases) -> object (12207.0) -
IRB::Context に cmd_name で指定したメソッドが実行できるように拡張 します。
...IRB::Context に cmd_name で指定したメソッドが実行できるように拡張
します。
@param cmd_name メソッド名を Symbol で指定します。
IRB::Context クラスのインスタンスメソッドとして定
義してある必要がありま......す。
@param load_file cmd_name で指定したメソッドが定義されたファイル名を指
定します。このファイルは自動的に require されます。
@param aliases cmd_name の別名を Symbol で指定します。複数指定する事ができます。... -
RubyVM
:: InstructionSequence . load _ from _ binary _ extra _ data(binary) -> String (12207.0) -
バイナリフォーマットの文字列から埋め込まれたextra_dataを取り出します。
...の文字列から埋め込まれたextra_dataを取り出します。
//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
binary = iseq.to_binary("extra_data")
RubyVM::InstructionSequence.load_from_binary_extra_data(binary) # => extra_data
//}
@see RubyVM::InstructionSe... -
irb
/ ext / loader (12044.0) -
load または require 時の irb のファイル読み込み機能(irb_load、 irb_require)を定義するサブライブラリです。
...load または require 時の irb のファイル読み込み機能(irb_load、
irb_require)を定義するサブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではあ
りません。irb/cmd/load や irb/ext/use-loader か... -
irb
/ ext / use-loader (12032.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うように設定する機能を提供するサブライブラリです。
...load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うように設定する機能を提供するサブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではありません。... -
IRB
:: ExtendCommandBundle . def _ extend _ command(cmd _ name , cmd _ class , load _ file = nil , *aliases) -> object (9207.0) -
irb に cmd_name で指定したメソッドが実行できるように拡張します。
...String、Class のいずれかで指定します。
なお、このクラスは IRB::ExtendCommand 以下で定義
する必要があります。
@param load_file 指定したメソッドが定義されたファイル名を指
定します。こ......す。複数指定する事ができます。フラグは
IRB::ExtendCommandBundle::NO_OVERRIDE、
IRB::ExtendCommandBundle::OVERRIDE_PRIVATE_ONLY、
IRB::ExtendCommandBundle::OVERRIDE_ALL のいずれか
を指定します。... -
IRB
:: Context # use _ loader -> bool (9132.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=... -
IRB
:: Context # use _ loader=(opt) (9132.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを設定します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを設定します。
.irbrc ファイル中で IRB.conf[:USE_LOADER] を設定する事でも同様の事が行
えます。
デフォルト値は false です。
@see IRB::Context#......use_loader?... -
IRB
:: Context # use _ loader? -> bool (9132.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=...