204件ヒット
[1-100件を表示]
(0.115秒)
ライブラリ
- ビルトイン (96)
- delegate (12)
-
irb
/ ext / use-loader (48) - rake (12)
- rubygems (24)
-
rubygems
/ version (12)
クラス
- Class (12)
- Complex (12)
- Delegator (12)
-
Gem
:: Version (12) -
IRB
:: Context (36) - Object (36)
-
Rake
:: Application (12) - Random (24)
- Rational (12)
モジュール
-
Gem
:: QuickLoader (24) -
IRB
:: ExtendCommandBundle (12)
キーワード
-
_ dump (12) -
add
_ loader (12) -
irb
_ load (12) -
marshal
_ dump (48) -
marshal
_ load (48) -
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
push
_ gem _ version _ on _ load _ path (12) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12)
検索結果
先頭5件
-
Class
# _ load(str) -> Class (24202.0) -
Object#_dump を参照して下さい。
Object#_dump を参照して下さい。
@param str Ruby のオブジェクトがダンプされた文字列を指定します。 -
Gem
:: QuickLoader # push _ all _ highest _ version _ gems _ on _ load _ path (15202.0) -
prelude.c で定義されている内部用のメソッドです。
...prelude.c で定義されている内部用のメソッドです。... -
Gem
:: QuickLoader # push _ gem _ version _ on _ load _ path (15202.0) -
prelude.c で定義されている内部用のメソッドです。
...prelude.c で定義されている内部用のメソッドです。... -
Rake
:: Application # add _ loader(ext , loader) (12301.0) -
与えられた拡張子で終わるファイル名のファイルをロードするためのローダーを 自身に追加します。
...@param loader ローダーを指定します。
//emlist[例][ruby]{
require "rake/loaders/makefile"
# Rakefile での記載例とする
task default: :test
task :test
makefile =<<-EOS
<< <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
EOS
IO.write("sample.mf", makefile)
Rake.application.add_loader("mf......", Rake::MakefileLoader.new)
Rake.application.add_import("sample.mf")
Rake::Task.task_defined?("a") # => false
Rake.application.load_imports
Rake::Task.task_defined?("a") # => true
//}... -
Object
# marshal _ load(obj) -> object (12232.0) -
Marshal.#load を制御するメソッドです。
...shal.#load を制御するメソッドです。
some のダンプ結果(Marshal.dump(some)) をロードする(Marshal.load(Marshal.dump(some)))に
は some がメソッド marshal_load を持っていなければなりません。
このとき、marshal_dump の返り値が marshal_load......marshal_load 時の self は、生成されたばかり(Class#allocate されたばかり) の状態です。
marshal_dump/marshal_load の仕組みは Ruby 1.8.0 から導入されました。
これから書くプログラムでは _dump/_load ではなく
marshal_dump/marshal_load を使う......べきです。
@param obj marshal_dump の返り値のコピーです。
@return 返り値は無視されます。
@see Object#marshal_dump, Marshal... -
IRB
:: ExtendCommandBundle # irb _ load(*opts , &b) -> nil (12218.0) -
現在の irb に関する IRB::Context に対して irb_load コマンドを実行 します。
...現在の irb に関する IRB::Context に対して irb_load コマンドを実行
します。
@see IRB::ExtendCommand::Load#execute... -
IRB
:: Context # use _ loader -> bool (12217.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) (12217.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 (12217.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=...