るりまサーチ (Ruby 3.3)

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

別のキーワード

  1. rexml/document new
  2. rexml/document write
  3. rexml/document to_s
  4. rexml/document node_type
  5. rexml/document clone

ライブラリ

クラス

キーワード

検索結果

Gem::Installer#spec -> Gem::Specification (78604.0)

インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。

インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。

Gem::Installer#write_spec (42304.0)

Ruby スクリプト形式で .gemspec ファイルを作成します。

Ruby スクリプト形式で .gemspec ファイルを作成します。

Gem::Installer#ensure_dependency(spec, dependency) -> true (24322.0)

インストールしようとしている Gem が依存関係を満たしている事を確認します。

インストールしようとしている Gem が依存関係を満たしている事を確認します。

依存関係を満たしていない場合は、例外 Gem::InstallError が発生します。

@param spec Gem::Specification のインスタンスを指定します。

@param dependency Gem::Dependency のインスタンスを指定します。

@raise Gem::InstallError 依存関係を満たしていない場合に発生します。

Gem::Installer#install -> Gem::Specification (24301.0)

Gem をインストールします。

Gem をインストールします。

以下のディレクトリ構造で Gem をインストールします。

@gem_home/
cache/<gem-version>.gem #=> インストールした Gem のコピー
gems/<gem-version>/... #=> インストール時に展開したファイル
specifications/<gem-version>.gemspec #=> gemspec ファイル

@return ロードされた Gem::Specification のインスタンスを返します。

@r...