るりまサーチ

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

別のキーワード

  1. specification dependent_gems
  2. specification add_dependency
  3. specification runtime_dependencies
  4. specification executables

検索結果

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

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

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

@see Gem::Dependency

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

絞り込み条件を変える

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

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

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

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

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

rake/gempackagetask (12.0)

Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。

...を定義します。

: PACKAGE_DIR/NAME-VERSION.gem
Gem パッケージを作成します。

例:
require 'rubygems'

spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version = PKG_VE...
...s.autorequire = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end

Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_ta...