るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. format spec
  2. installer spec
  3. format spec=
  4. uninstaller spec
  5. oldformat spec

検索結果

Gem::SpecFetcher#list(all = false) -> Array (63328.0)

Gem::sources に格納されている各ソースから利用可能な Gem のリストを取得して返します。

Gem::sources に格納されている各ソースから利用可能な Gem のリストを取得して返します。

@param list 真を指定すると全てのバージョンの情報を返します。

Gem::DependencyList#spec_predecessors -> Hash (27346.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) (9307.0)

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

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

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

Gem::DependencyList#dependency_order -> [Gem::Specification] (9307.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...

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

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

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

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

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

@see Gem::Specification#full_name

絞り込み条件を変える

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

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

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

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

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

@see Gem::Specification#full_name, Array#delete_if

Gem::Uninstaller#remove(spec, list) (649.0)

指定された Gem を削除します。

指定された Gem を削除します。

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

@param list アンインストールする Gem のリストを指定します。
このパラメータは破壊的に変更されます。

@raise Gem::DependencyRemovalException アンインストール指定された Gem を削除すると
依存関係が壊れる場合に発生します。

@raise Gem::GemNotInHome...