るりまサーチ

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

別のキーワード

  1. array fill
  2. array sample
  3. array []
  4. array index
  5. array rindex

検索結果

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

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

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

@see Gem::Dependency

Gem::Commands::DependencyCommand#find_reverse_dependencies(spec) -> Array (6202.0)

与えられた Gem スペックに依存する Gem のリストを返します。

与えられた Gem スペックに依存する Gem のリストを返します。

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

Gem::DependencyInstaller#gather_dependencies -> Array (6202.0)

依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。

依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。

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

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

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

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

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

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

絞り込み条件を変える

tsort (18.0)

tsort はトポロジカルソートと強連結成分に関するモジュールを提供します。

...ed_component_from(target) {|ns|
if ns.length != 1
fs = ns.delete_if {|n| Array === n}
raise TSort::Cyclic.new("cyclic dependencies: #{fs.join ', '}")
end
n = ns.first
if Array === n
outputs, inputs, block = n
inputs_time = inputs.map {|f| File....