るりまサーチ

最速Rubyリファレンスマニュアル検索!
77件ヒット [1-77件を表示] (0.122秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:p[x] > クラス:Gem::DependencyList[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

ライブラリ

キーワード

検索結果

Gem::DependencyList#dependency_order -> [Gem::Specification] (9202.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 left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Gem::DependencyList#spec_predecessors -> Hash (9102.0)

@todo ???

...@todo ???

Return a hash of predecessors. <tt>result[spec]</tt> is an
Array of gemspecs that have a dependency satisfied by the named
spec....

Gem::DependencyList#add(*gemspecs) (3102.0)

与えられた Gem::Specification のインスタンスを自身に追加します。

...与えられた Gem::Specification のインスタンスを自身に追加します。

@param gemspecs Gem::Specification のインスタンスを一つ以上指定します。...

Gem::DependencyList#find_name(full_name) -> Gem::Specification | nil (3102.0)

自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。

...身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。

見つからなかった場合は nil を返します。

@param full_name バージョンを含むフルネームで Gem の名前を指定します。

@see Gem::Specification#full_name...

Gem::DependencyList#remove_by_name(full_name) -> Gem::Specification (3102.0)

与えられた名前を持つ Gem::Specification を自身から削除します。

...られた名前を持つ Gem::Specification を自身から削除します。

このメソッドでは削除後の依存関係をチェックしません。

@param full_name バージョンを含むフルネームで Gem の名前を指定します。

@see Gem::Specification#full_name, Array#dele...

絞り込み条件を変える

Gem::DependencyList#ok? -> bool (3002.0)

自身に含まれる全ての Gem::Specification が依存関係を満たしていれば真を返します。 そうでない場合は、偽を返します。

...自身に含まれる全ての Gem::Specification が依存関係を満たしていれば真を返します。
そうでない場合は、偽を返します。...

Gem::DependencyList#ok_to_remove?(full_name) -> bool (3002.0)

与えられた名前を持つ Gem::Specification を自身から削除しても OK な場合は真を返します。 そうでない場合は、偽を返します。

...与えられた名前を持つ Gem::Specification を自身から削除しても OK な場合は真を返します。
そうでない場合は、偽を返します。

与えられた名前を持つ Gem::Specification を自身から削除すると、
依存関係を壊してしまう場合が、...
...それを削除してはいけない場合です。

@param full_name バージョンを含むフルネームで Gem の名前を指定します。

@see Gem::Specification#full_name...