るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. fiddle align_ptrdiff_t
  4. fiddle type_size_t
  5. fiddle type_ssize_t

検索結果

Gem::Specification#dependencies -> Array (72307.0)

依存している Gem のリストを返します。

依存している Gem のリストを返します。

@see Gem::Dependency

Gem::Specification#runtime_dependencies -> Array (54607.0)

この Gem パッケージが依存している Gem パッケージのリストを返します。

この Gem パッケージが依存している Gem パッケージのリストを返します。

Gem::Specification#development_dependencies -> Array (45607.0)

この Gem が依存している Gem のリストを返します。

この Gem が依存している Gem のリストを返します。

Gem::Commands::DependencyCommand#print_dependencies(spec, level = 0) -> String (36625.0)

依存関係を表す文字列を返します。

依存関係を表す文字列を返します。

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

@param level 依存関係の深さを指定します。

Gem::Uninstaller#dependencies_ok?(spec) -> bool (27325.0)

アンインストール指定された Gem を削除しても依存関係を満たすことができるか どうかチェックします。

アンインストール指定された Gem を削除しても依存関係を満たすことができるか
どうかチェックします。

@param spec アンインストール指定されている Gem の Gem::Specification を指定します。

絞り込み条件を変える

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

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

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

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存関係による多くの問題を回避することができます。

If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are le...