ライブラリ
- ビルトイン (106)
- bigdecimal (12)
- drb (12)
-
irb
/ cmd / load (12) -
irb
/ context (12) -
irb
/ ext / use-loader (48) - openssl (24)
- rake (36)
- rubygems (96)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (12) -
webrick
/ httpauth / htdigest (24) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (24) -
webrick
/ httpauth / userdb (12)
クラス
- BigDecimal (12)
- Complex (12)
-
DRb
:: DRbUnknown (12) -
Gem
:: Commands :: BuildCommand (12) -
Gem
:: LoadError (24) -
Gem
:: Package :: TarInput (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (12) -
IRB
:: Context (48) -
IRB
:: ExtendCommand :: Load (12) - Module (24)
- Object (36)
-
OpenSSL
:: Config (12) -
OpenSSL
:: Engine (12) -
Rake
:: Application (24) -
Rake
:: DefaultLoader (12) - Random (12)
- Rational (12)
-
RubyVM
:: InstructionSequence (10) -
WEBrick
:: HTTPAuth :: Htdigest (24) -
WEBrick
:: HTTPAuth :: Htgroup (12) -
WEBrick
:: HTTPAuth :: Htpasswd (24)
モジュール
-
Gem
:: QuickLoader (60) -
IRB
:: ExtendCommandBundle (12) - Kernel (12)
-
WEBrick
:: HTTPAuth :: UserDB (12)
キーワード
-
_ dump (24) - autoload (12)
- autoload? (12)
-
calculate
_ integers _ for _ gem _ version (12) -
const
_ missing (12) - download (12)
- dup (12)
- each (12)
- execute (12)
- gem (12)
-
get
_ passwd (36) -
irb
_ load (12) -
load
_ gems _ in (12) -
load
_ gemspec (12) -
load
_ gemspecs (12) -
load
_ modules (12) -
load
_ public _ key (12) -
load
_ specs (12) -
marshal
_ dump (48) -
method
_ missing (12) -
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
push
_ gem _ version _ on _ load _ path (12) - reload (48)
- run (12)
-
to
_ binary (10) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12) -
version
_ requirement (12) -
version
_ requirement= (12)
検索結果
先頭5件
-
Rake
:: DefaultLoader # load(filename) (24108.0) -
与えられたファイルをロードします。
...与えられたファイルをロードします。
@param filename ロードするファイル名を指定します。
//emlist[][ruby]{
require 'rake'
loader = Rake::DefaultLoader.new
loader.load("path/to/Rakefile") # => true
//}... -
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 で定義されている内部用のメソッドです。... -
IRB
:: Context # use _ loader -> bool (12233.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) (12233.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 (12233.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=... -
IRB
:: Context # load _ modules -> [String] (12218.0) -
irb の起動時に -r オプション指定で読み込まれたライブラリ、~/.irbrc など の設定ファイル内で IRB.conf[:LOAD_MODULES] 指定で読み込まれたライブラリ の名前の配列を返します。
...irb の起動時に -r オプション指定で読み込まれたライブラリ、~/.irbrc など
の設定ファイル内で IRB.conf[:LOAD_MODULES] 指定で読み込まれたライブラリ
の名前の配列を返します。... -
OpenSSL
:: Engine # load _ public _ key(id=nil , data=nil) -> OpenSSL :: PKey :: PKey (12202.0) -
公開鍵を engine にロードします。
公開鍵を engine にロードします。
@param id key id(文字列)
@param data 文字列 -
Module
# autoload(const _ name , feature) -> nil (12201.0) -
定数 const_name を最初に参照した時に feature を Kernel.#require するように設定します。
...に参照した時に feature を Kernel.#require するように設定します。
const_name が autoload 設定されていて、まだ定義されてない(ロードされていない)ときは、
autoload する対象を置き換えます。
const_name が(autoloadではなく)既に定義さ......か指定できません。
@param feature Kernel.#require と同様な方法で autoload する対象を指定する。
//emlist[例][ruby]{
# ------- /tmp/foo.rb ---------
class Foo
class Bar
end
end
# ----- end of /tmp/foo.rb ----
class Foo
autoload :Bar, '/tmp/foo'
end
p Foo::Bar #=> Fo......出すこともできます。
//emlist[例][ruby]{
# ------- /tmp/foo.rb ---------
class Foo
class Bar
end
end
# ----- end of /tmp/foo.rb ----
class Foo
end
Foo.autoload :Bar, '/tmp/foo'
p Foo::Bar #=> Foo::Bar
//}
以下のように、autoload したライブラリがネストした定数...