634件ヒット
[101-200件を表示]
(0.071秒)
ライブラリ
- ビルトイン (118)
- bigdecimal (12)
- delegate (12)
- drb (12)
-
fiddle
/ import (12) -
irb
/ cmd / load (12) -
irb
/ context (12) -
irb
/ ext / use-loader (48) - openssl (36)
- psych (12)
- rake (48)
-
rake
/ loaders / makefile (12) - rubygems (96)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ config _ file (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (12) -
rubygems
/ specification (48) -
webrick
/ httpauth / htdigest (24) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (24) -
webrick
/ httpauth / userdb (12)
クラス
- BigDecimal (12)
- Class (12)
- Complex (12)
-
DRb
:: DRbUnknown (12) - Delegator (12)
-
Gem
:: Commands :: BuildCommand (12) -
Gem
:: ConfigFile (12) -
Gem
:: LoadError (24) -
Gem
:: Package :: TarInput (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (12) -
Gem
:: Specification (48) -
IRB
:: Context (48) -
IRB
:: ExtendCommand :: Load (12) - Module (24)
- Object (60)
-
OpenSSL
:: Config (12) -
OpenSSL
:: Engine (12) -
OpenSSL
:: X509 :: ExtensionFactory (12) -
Psych
:: SyntaxError (12) -
Rake
:: Application (48) -
Rake
:: MakefileLoader (12) -
RubyVM
:: InstructionSequence (10) -
WEBrick
:: HTTPAuth :: Htdigest (24) -
WEBrick
:: HTTPAuth :: Htgroup (12) -
WEBrick
:: HTTPAuth :: Htpasswd (24)
モジュール
-
Fiddle
:: Importer (12) -
Gem
:: QuickLoader (60) -
IRB
:: ExtendCommandBundle (12) - Kernel (12)
-
WEBrick
:: HTTPAuth :: UserDB (12)
キーワード
-
_ dump (24) -
_ load (12) -
add
_ loader (12) - autoload (12)
- autoload? (12)
-
calculate
_ integers _ for _ gem _ version (12) - clone (12)
- config= (12)
-
const
_ missing (12) - dlload (12)
- download (12)
- dup (12)
- each (12)
- execute (12)
- file (12)
- gem (12)
-
get
_ passwd (36) -
irb
_ load (12) -
load
_ file (12) -
load
_ gems _ in (12) -
load
_ gemspec (12) -
load
_ gemspecs (12) -
load
_ modules (12) -
load
_ public _ key (12) -
load
_ rakefile (12) -
load
_ specs (12) - loaded= (12)
- loaded? (12)
-
loaded
_ from (12) -
loaded
_ from= (12) -
marshal
_ dump (24) -
marshal
_ load (24) -
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件
-
Gem
:: RemoteFetcher # download(spec , source _ uri , install _ dir = Gem . dir) -> String (9207.0) -
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
...source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
既に Gem パッケージが存在する場合は、ファイルを置き換えませんが source_uri が
ローカルパス (file://) である場合は常にファイルを置き換えま......す。
@param spec Gem::Specification のインスタンスを指定します。
@param source_uri 取得先の URI を指定します。
@param install_dir ダウンロードしたファイルの配置先を指定します。
@return ローカルにコピーした Gem ファイルのパスを......返します。
@raise Gem::RemoteFetcher::FetchError... -
Rake
:: Application # add _ loader(ext , loader) (9207.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
//}... -
Class
# _ load(str) -> Class (9202.0) -
Object#_dump を参照して下さい。
...Object#_dump を参照して下さい。
@param str Ruby のオブジェクトがダンプされた文字列を指定します。... -
Gem
:: ConfigFile # load _ file(file _ name) -> object (9202.0) -
与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
@param file_name YAML 形式で記述された設定ファイル名を指定します。 -
Gem
:: SourceIndex # load _ gems _ in(*spec _ dirs) -> self (9202.0) -
引数で与えられたディレクトリに含まれる gemspec から自身を再構築して返します。
...引数で与えられたディレクトリに含まれる gemspec から自身を再構築して返します。
@param spec_dirs gemspec の含まれているディレクトリを複数指定します。... -
IRB
:: ExtendCommandBundle # irb _ load(*opts , &b) -> nil (9140.0) -
現在の irb に関する IRB::Context に対して irb_load コマンドを実行 します。
...現在の irb に関する IRB::Context に対して irb_load コマンドを実行
します。
@see IRB::ExtendCommand::Load#execute... -
IRB
:: Context # use _ loader -> bool (9133.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) (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?... -
IRB
:: Context # use _ loader? -> bool (9133.0) -
load または require 時に irb のファイル読み込み機能(irb_load、 irb_require)を使うかどうかを返します。
...
load または require 時に irb のファイル読み込み機能(irb_load、
irb_require)を使うかどうかを返します。
@see IRB::Context#use_loader=...