312件ヒット
[101-200件を表示]
(0.072秒)
種類
- インスタンスメソッド (240)
- 特異メソッド (24)
- クラス (24)
- 定数 (24)
クラス
-
Gem
:: Dependency (96) -
Gem
:: DependencyInstaller (96) -
Gem
:: DependencyList (96)
キーワード
- <=> (12)
- =~ (12)
-
DEFAULT
_ OPTIONS (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)
- 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 # find _ gems _ with _ sources(dep) -> Array (6101.0) -
与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを 返します。
...与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを
返します。
Gem はローカル (Dir.pwd) とリモート (Gem.sources) の両方から検索します。
結果は、バージョンの新しい順が先にきます。また、ロ... -
Gem
:: DependencyInstaller # gather _ dependencies -> Array (6101.0) -
依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。
依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。 -
Gem
:: DependencyInstaller :: DEFAULT _ OPTIONS -> Hash (6101.0) -
自身を初期化する際に使用するデフォルトのオプションです。
...g => false,
:domain => :both, # HACK dup
:force => false,
:format_executable => false, # HACK dup
:ignore_dependencies => false,
:security_policy => nil, # HACK NoSecurity requires OpenSSL. AlmostNo? Low?
:wrappers => true... -
Gem
:: DependencyList # ok _ to _ remove?(full _ name) -> bool (6101.0) -
与えられた名前を持つ Gem::Specification を自身から削除しても OK な場合は真を返します。 そうでない場合は、偽を返します。
...与えられた名前を持つ Gem::Specification を自身から削除しても OK な場合は真を返します。
そうでない場合は、偽を返します。
与えられた名前を持つ Gem::Specification を自身から削除すると、
依存関係を壊してしまう場合が、......それを削除してはいけない場合です。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name... -
Gem
:: DependencyInstaller (6001.0) -
ある Gem が依存している Gem を同時にインストールするためのクラスです。
ある Gem が依存している Gem を同時にインストールするためのクラスです。 -
Gem
:: DependencyList (6001.0) -
Gem の依存関係を扱うためのクラスです。
Gem の依存関係を扱うためのクラスです。 -
Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array (3101.0) -
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。
...与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。
@param gem_name Gem の名前を指定します。
@param version Gem が満たすバージョンに関する条件を指定しま... -
Gem
:: DependencyInstaller . new(options = {}) -> Gem :: DependencyInstaller (3101.0) -
自身を初期化します。
...in
:local (カレントディレクトリのみ検索します), :remote (Gem.sources を検索します),
:both (:local, :remote の両方を検索します) のいずれかを指定可能です。
: :env_shebang
Gem::Installer.new を参照してください。
: :force
バージョンチ......実行します。
: :format_executable
Gem::Installer.new を参照してください。
: :ignore_dependencies
依存している Gem をインストールしません。
: :install_dir
Gem をインストールするディレクトリです。
: :security_policy
セキュリティポ......リシーを指定します。
: :user_install
false を指定するとユーザのホームディレクトリにインストールしません。
nil を指定するとユーザのホームディレクトリにインストールしようとしますが、
警告を表示します。
: :wrappe... -
Gem
:: DependencyList # dependency _ order -> [Gem :: Specification] (3101.0) -
依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。
...ation のリストを返します。
このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存関係による多くの問題を回避することができます。
If th......ere 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....