144件ヒット
[1-100件を表示]
(0.145秒)
別のキーワード
ライブラリ
-
rubygems
/ dependency _ installer (12) -
rubygems
/ indexer (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (84) -
rubygems
/ source _ info _ cache (24)
クラス
-
Gem
:: DependencyInstaller (12) -
Gem
:: Indexer (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (84) -
Gem
:: SourceInfoCache (24)
キーワード
-
add
_ spec (12) -
collect
_ specs (12) - download (12)
-
find
_ gems _ with _ sources (12) -
find
_ name (12) -
latest
_ specs (12) - outdated (12)
-
remove
_ spec (12) - search (24)
-
search
_ with _ source (12)
検索結果
先頭5件
-
Gem
:: SourceIndex # specification(full _ name) -> Gem :: Specification | nil (27419.0) -
指定された名前の Gem::Specification オブジェクトを返します。
...指定された名前の Gem::Specification オブジェクトを返します。
@param full_name Gem のフルネームを指定します。... -
Gem
:: SourceInfoCache # search _ with _ source(pattern , only _ platform = false , all = false) -> Array (15224.0) -
与えられた条件を満たす Gem::Specification と URL のリストを返します。
...与えられた条件を満たす Gem::Specification と URL のリストを返します。
@param pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。
@param only_platform 真を指定するとプラットフォームが一致するもののみを返......します。デフォルトは偽です。
@param all 真を指定するとキャッシュを更新してから検索を実行します。
@return 第一要素を Gem::Specification、第二要素を取得元の URL とする配列を要素とする配列を返します。... -
Gem
:: DependencyInstaller # find _ gems _ with _ sources(dep) -> Array (12217.0) -
与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを 返します。
...与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを
返します。
Gem はローカル (Dir.pwd) とリモート (Gem.sources) の両方から検索します。
結果は、バージョンの新しい順が先にきます。また、ロ... -
Gem
:: SourceIndex # latest _ specs -> Array (9117.0) -
自身に含まれる最新の Gem::Specification のリストを返します。
...自身に含まれる最新の Gem::Specification のリストを返します。... -
Gem
:: SourceIndex # outdated -> Array (9117.0) -
更新されていない Gem::Specification のリストを返します。
...更新されていない Gem::Specification のリストを返します。... -
Gem
:: Indexer # collect _ specs -> Gem :: SourceIndex (6217.0) -
Gem のキャッシュディレクトリ内の *.gem ファイルから Gem::Specification を集めます。
...Gem のキャッシュディレクトリ内の *.gem ファイルから Gem::Specification を集めます。... -
Gem
:: RemoteFetcher # download(spec , source _ uri , install _ dir = Gem . dir) -> String (3236.0) -
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
...
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
既に Gem パッケージが存在する場合は、ファイルを置き換えませんが source_uri が
ローカルパス (file://) である場合は常にファイルを置き換えま......す。
@param spec Gem::Specification のインスタンスを指定します。
@param source_uri 取得先の URI を指定します。
@param install_dir ダウンロードしたファイルの配置先を指定します。
@return ローカルにコピーした Gem ファイルのパスを......返します。
@raise Gem::RemoteFetcher::FetchError... -
Gem
:: SourceIndex # add _ spec(gem _ spec) -> Gem :: Specification (3224.0) -
自身に引数で与えられた Gem::Specification のインスタンスを追加します。
...自身に引数で与えられた Gem::Specification のインスタンスを追加します。
@param gem_spec Gem::Specification のインスタンスを指定します。... -
Gem
:: SourceInfoCache # search(pattern , platform _ only = false , all = false) -> [Gem :: Specification] (3218.0) -
与えられた条件を満たす Gem::Specification のリストを返します。
...与えられた条件を満たす Gem::Specification のリストを返します。
@param pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。
@param platform_only 真を指定するとプラットフォームが一致するもののみを返します......。デフォルトは偽です。
@param all 真を指定するとキャッシュを更新してから検索を実行します。
@see Gem::SourceIndex#search...