るりまサーチ

最速Rubyリファレンスマニュアル検索!
725件ヒット [1-100件を表示] (0.030秒)
トップページ > クエリ:Dependency[x]

別のキーワード

  1. dependency =~
  2. dependency <=>
  3. dependency type
  4. dependency name
  5. dependency types

モジュール

検索結果

<< 1 2 3 ... > >>

Gem::Dependency (18000.0)

Gem の依存関係を管理するクラスです。

Gem の依存関係を管理するクラスです。

Gem::DependencyList#dependency_order -> [Gem::Specification] (9113.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Gem::Specification#add_dependency(gem, *requirements) -> [Gem::Dependency] (6228.0)

この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。

...[ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}

@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@param requirements バージョンの必要条件...
...を 0 個以上指定します。デフォルトは ">= 0" です。

@see Gem::Specification#add_development_dependency, Gem::Dependency...

Gem::Specification#add_runtime_dependency(gem, *requirements) -> [Gem::Dependency] (6228.0)

この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。

...[ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}

@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@param requirements バージョンの必要条件...
...を 0 個以上指定します。デフォルトは ">= 0" です。

@see Gem::Specification#add_development_dependency, Gem::Dependency...

Gem::Specification#add_development_dependency(gem, *requirements) -> [Gem::Dependency] (6220.0)

この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。

...1.6.12"
//}

@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。

@see Gem::Specification#add_runtime_dependency, Gem::Dependency...

絞り込み条件を変える

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

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

...合は、例外 Gem::InstallError が発生します。

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

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

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

Gem::Installer#installation_satisfies_dependency?(dependency) -> bool (6214.0)

登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。

...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。

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

Net::HTTPFailedDependency (6016.0)

HTTP レスポンス 424 (Failed Dependency) を表現するクラスです。

...HTTP レスポンス 424 (Failed Dependency) を表現するクラスです。

詳しくは 4918 を見てください。...

rubygems/commands/dependency_command (6006.0)

インストールされている Gem パッケージの依存関係を表示するためのライブラリです。

...インストールされている Gem パッケージの依存関係を表示するためのライブラリです。

Usage: gem dependency GEMNAME [options]
Options:
-v, --version VERSION 指定したバージョンの依存関係を表示します
--platform PLATFO...
<< 1 2 3 ... > >>