るりまサーチ

最速Rubyリファレンスマニュアル検索!
634件ヒット [101-200件を表示] (0.071秒)

別のキーワード

  1. _builtin to_c
  2. etc sc_2_c_dev
  3. etc sc_2_c_bind
  4. tracer display_c_call
  5. tracer display_c_call=

検索結果

<< < 1 2 3 4 ... > >>

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=...
<< < 1 2 3 4 ... > >>