629件ヒット
[1-100件を表示]
(0.023秒)
ライブラリ
-
net
/ http (12) -
rubygems
/ commands / dependency _ command (84) -
rubygems
/ dependency (120) -
rubygems
/ dependency _ installer (108) -
rubygems
/ dependency _ list (108) -
rubygems
/ exceptions (24) -
rubygems
/ installer (24) -
rubygems
/ spec _ fetcher (24) -
rubygems
/ specification (72)
クラス
-
Gem
:: Commands :: DependencyCommand (72) -
Gem
:: Dependency (108) -
Gem
:: DependencyInstaller (96) -
Gem
:: DependencyList (96) -
Gem
:: Installer (24) -
Gem
:: SpecFetcher (24) -
Gem
:: Specification (72)
キーワード
- <=> (12)
- =~ (12)
-
DEFAULT
_ OPTIONS (12) - DependencyCommand (12)
- DependencyError (12)
- DependencyInstaller (12)
- DependencyList (12)
- DependencyRemovalException (12)
- HTTPFailedDependency (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - TYPES (12)
- add (12)
-
add
_ dependency (12) -
add
_ development _ dependency (12) -
add
_ runtime _ dependency (12) - arguments (12)
- dependencies (12)
-
dependency
_ order (12) -
dependent
_ gems (12) -
ensure
_ dependency (12) - execute (12)
- fetch (12)
-
find
_ gems (12) -
find
_ gems _ with _ sources (12) -
find
_ matching (12) -
find
_ name (12) -
find
_ reverse _ dependencies (12) -
find
_ spec _ by _ name _ and _ version (12) -
from
_ source _ index (12) -
gather
_ dependencies (12) -
gems
_ to _ install (12) - install (12)
-
installation
_ satisfies _ dependency? (12) -
installed
_ gems (12) - name (12)
- name= (12)
- new (12)
- ok? (12)
-
ok
_ to _ remove? (12) -
print
_ dependencies (12) -
remove
_ by _ name (12) -
requirements
_ list (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ dependency (12) -
rubygems
/ dependency _ installer (12) -
rubygems
/ dependency _ list (12) -
satisfies
_ requirement? (12) -
spec
_ predecessors (12) - type (12)
- usage (12)
-
version
_ requirements (12) -
version
_ requirements= (12)
検索結果
先頭5件
- Gem
:: Dependency - Gem
:: DependencyList # dependency _ order -> [Gem :: Specification] - Gem
:: Specification # add _ dependency(gem , *requirements) -> [Gem :: Dependency] - Gem
:: Specification # add _ runtime _ dependency(gem , *requirements) -> [Gem :: Dependency] - Gem
:: Specification # add _ development _ dependency(gem , *requirements) -> [Gem :: Dependency]
-
Gem
:: Dependency (24000.0) -
Gem の依存関係を管理するクラスです。
Gem の依存関係を管理するクラスです。 -
Gem
:: DependencyList # dependency _ order -> [Gem :: Specification] (18213.0) -
依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。
...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 broken, after which gems will be
returned in dependency order again.... -
Gem
:: Specification # add _ dependency(gem , *requirements) -> [Gem :: Dependency] (12428.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...[ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件......を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_development_dependency, Gem::Dependency... -
Gem
:: Specification # add _ runtime _ dependency(gem , *requirements) -> [Gem :: Dependency] (12428.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...[ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件......を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_development_dependency, Gem::Dependency... -
Gem
:: Specification # add _ development _ dependency(gem , *requirements) -> [Gem :: Dependency] (12420.0) -
この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。
...1.6.12"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_runtime_dependency, Gem::Dependency... -
Gem
:: Installer # ensure _ dependency(spec , dependency) -> true (12414.0) -
インストールしようとしている Gem が依存関係を満たしている事を確認します。
...合は、例外 Gem::InstallError が発生します。
@param spec Gem::Specification のインスタンスを指定します。
@param dependency Gem::Dependency のインスタンスを指定します。
@raise Gem::InstallError 依存関係を満たしていない場合に発生します。... -
Gem
:: Installer # installation _ satisfies _ dependency?(dependency) -> bool (12414.0) -
登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。
...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。
@param dependency Gem::Dependency のインスタンスを指定します。... -
Gem
:: Commands :: DependencyCommand # find _ reverse _ dependencies(spec) -> Array (12100.0) -
与えられた Gem スペックに依存する Gem のリストを返します。
与えられた Gem スペックに依存する Gem のリストを返します。
@param spec Gem::Specification のインスタンスを指定します。 -
Gem
:: Commands :: DependencyCommand # print _ dependencies(spec , level = 0) -> String (12100.0) -
依存関係を表す文字列を返します。
依存関係を表す文字列を返します。
@param spec Gem::Specification のインスタンスを指定します。
@param level 依存関係の深さを指定します。