336件ヒット
[201-300件を表示]
(0.029秒)
別のキーワード
種類
- インスタンスメソッド (252)
- クラス (36)
- 特異メソッド (24)
- 定数 (24)
クラス
-
Gem
:: Dependency (108) -
Gem
:: DependencyInstaller (96) -
Gem
:: DependencyList (96)
キーワード
- <=> (12)
- =~ (12)
-
DEFAULT
_ OPTIONS (12) - Dependency (12)
- DependencyInstaller (12)
- DependencyList (12)
- TYPES (12)
- add (12)
-
dependency
_ order (12) -
find
_ gems _ with _ sources (12) -
find
_ name (12) -
find
_ spec _ by _ name _ and _ version (12) -
from
_ source _ index (12) -
gather
_ dependencies (12) -
gems
_ to _ install (12) - install (12)
-
installed
_ gems (12) - name (12)
- name= (12)
- new (12)
- ok? (12)
-
ok
_ to _ remove? (12) -
remove
_ by _ name (12) -
requirements
_ list (12) -
spec
_ predecessors (12) - type (12)
-
version
_ requirements (12) -
version
_ requirements= (12)
検索結果
先頭5件
-
Gem
:: DependencyInstaller # gather _ dependencies -> Array (3001.0) -
依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。
依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。 -
Gem
:: DependencyInstaller # gems _ to _ install -> Array (3001.0) -
依存関係によりインストールされる予定の Gem のリストを返します。
依存関係によりインストールされる予定の Gem のリストを返します。 -
Gem
:: DependencyInstaller # installed _ gems -> Array (3001.0) -
Gem::DependencyInstaller#install でインストールされた Gem のリストを返します。
...
Gem::DependencyInstaller#install でインストールされた Gem のリストを返します。... -
Gem
:: DependencyInstaller :: DEFAULT _ OPTIONS -> Hash (3001.0) -
自身を初期化する際に使用するデフォルトのオプションです。
自身を初期化する際に使用するデフォルトのオプションです。
:env_shebang => false,
:domain => :both, # HACK dup
:force => false,
:format_executable => false, # HACK dup
:ignore_dependencies => false,
:security_policy => nil, # HACK NoSecurity requires OpenSSL. Al... -
Gem
:: DependencyList (3001.0) -
Gem の依存関係を扱うためのクラスです。
Gem の依存関係を扱うためのクラスです。 -
Gem
:: DependencyList # add(*gemspecs) (3001.0) -
与えられた Gem::Specification のインスタンスを自身に追加します。
与えられた Gem::Specification のインスタンスを自身に追加します。
@param gemspecs Gem::Specification のインスタンスを一つ以上指定します。 -
Gem
:: DependencyList # dependency _ order -> [Gem :: Specification] (3001.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 (3001.0) -
自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
見つからなかった場合は nil を返します。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name -
Gem
:: DependencyList # ok? -> bool (3001.0) -
自身に含まれる全ての Gem::Specification が依存関係を満たしていれば真を返します。 そうでない場合は、偽を返します。
自身に含まれる全ての Gem::Specification が依存関係を満たしていれば真を返します。
そうでない場合は、偽を返します。