406件ヒット
[1-100件を表示]
(0.092秒)
別のキーワード
ライブラリ
- ビルトイン (70)
- bigdecimal (12)
- delegate (12)
- drb (12)
-
fiddle
/ import (12) -
irb
/ cmd / load (12) -
irb
/ context (12) -
irb
/ ext / save-history (12) -
irb
/ ext / use-loader (48) - openssl (12)
- optparse (12)
-
rake
/ loaders / makefile (12) -
rake
/ testtask (36) - rubygems (12)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ config _ file (12) -
rubygems
/ spec _ fetcher (12) -
rubygems
/ specification (12) -
webrick
/ httpauth / htdigest (24) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (24) -
webrick
/ httpauth / userdb (12)
クラス
- BigDecimal (12)
-
DRb
:: DRbUnknown (12) - Delegator (12)
-
Gem
:: Commands :: BuildCommand (12) -
Gem
:: ConfigFile (12) -
Gem
:: SpecFetcher (12) -
Gem
:: Specification (12) -
IRB
:: Context (48) -
IRB
:: ExtendCommand :: Load (12) - Object (60)
-
OpenSSL
:: Engine (12) - OptionParser (12)
-
Rake
:: MakefileLoader (12) -
Rake
:: TestTask (36) -
RubyVM
:: InstructionSequence (10) -
WEBrick
:: HTTPAuth :: Htdigest (24) -
WEBrick
:: HTTPAuth :: Htgroup (12) -
WEBrick
:: HTTPAuth :: Htpasswd (24)
モジュール
-
Fiddle
:: Importer (12) -
IRB
:: ExtendCommandBundle (12) -
IRB
:: HistorySavingAbility (12) - Kernel (12)
-
WEBrick
:: HTTPAuth :: UserDB (12)
キーワード
-
_ dump (24) - clone (12)
- dlload (12)
- dup (12)
- execute (12)
- gem (12)
-
get
_ passwd (36) -
irb
_ load (12) - libs (12)
- libs= (12)
-
load
_ file (12) -
load
_ gemspecs (12) -
load
_ history (12) -
load
_ modules (12) -
load
_ public _ key (12) -
load
_ specs (12) - loaded? (12)
- loader (12)
-
marshal
_ dump (12) -
marshal
_ load (24) - reload (48)
-
to
_ binary (10) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12)
検索結果
先頭5件
-
Rake
:: MakefileLoader # load(filename) (21156.0) -
与えられた Makefile をロードします。
...を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
require "rake/loaders/makefile"
task default: :test_rake_app
open "sample.mf", "w" do |io|
io << <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
b: b1 b2 b3 \
b4 b5 b6\
# Mid: Comment
b7
a : a5 a6 a7
c: c1
d: d1 d2 \
e f :......e1 f1
g\ 0: g1 g\ 2 g\ 3 g4
SAMPLE_MF
end
task :test_rake_app do |task|
loader = Rake::MakefileLoader.new
loader.load("sample.mf")
p Rake::Task.task_defined?("a") # => true
p Rake::Task.tasks[0] # => <Rake::FileTask a => [a1, a2, a3, a4, a5, a6, a7]>
end
//}... -
OptionParser
# load(filename = nil) -> bool (18244.0) -
指定された filename を読み込んで各行をまとめたものに対して OptionParser#parse を行ないます。
...。
//emlist[例][ruby]{
require "optparse"
IO.write("options.txt", %w(-a --b).join("\n"))
options = { a: false, b: false }
OptionParser.new do |opt|
opt.on('-a') { |v| options[:a] = v }
opt.on('--b') {|v| options[:b] = v }
opt.load("options.txt") # => true
opt.load("not_exist.txt") # =>......false
end
p options # => {:a=>true, :b=>true}
//}... -
IRB
:: ExtendCommandBundle # irb _ load(*opts , &b) -> nil (12225.0) -
現在の irb に関する IRB::Context に対して irb_load コマンドを実行 します。
...現在の irb に関する IRB::Context に対して irb_load コマンドを実行
します。
@see IRB::ExtendCommand::Load#execute... -
OpenSSL
:: Engine # load _ public _ key(id=nil , data=nil) -> OpenSSL :: PKey :: PKey (12202.0) -
公開鍵を engine にロードします。
公開鍵を engine にロードします。
@param id key id(文字列)
@param data 文字列 -
Object
# marshal _ load(obj) -> object (9360.0) -
Marshal.#load を制御するメソッドです。
...hal.#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
:: Context # use _ loader -> bool (9233.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=... -
IRB
:: Context # use _ loader? -> bool (9233.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=... -
DRb
:: DRbUnknown # reload -> object (9201.0) -
保持しているマーシャリングされたオブジェクトをRubyのオブジェクトに 変換しようと試みます。
...をRubyのオブジェクトに
変換しようと試みます。
DRbUnknown オブジェクトを受け取った後に対応するクラスが定義された場合、
このメソッドでそのクラスのオブジェクトに変換できます。
変換を試みて失敗した場合は DRbUnknow... -
IRB
:: Context # use _ loader=(opt) (9133.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?...