るりまサーチ

最速Rubyリファレンスマニュアル検索!
437件ヒット [1-100件を表示] (0.107秒)

別のキーワード

  1. openssl g
  2. openssl g=
  3. dh g
  4. dsa g
  5. dsa g=

検索結果

<< 1 2 3 ... > >>

Gem::GemPathSearcher#find(path) -> Gem::Specification | nil (24208.0)

与えられたパスにマッチする Gem::Specification を一つだけ返します。

...与えられたパスにマッチする Gem::Specification を一つだけ返します。

@see Enumerable#find...

Pathname#find(ignore_error: true) -> Enumerator (18233.0)

self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。

...クを実行します。

require 'find'
Find
.find(self.to_s) {|f| yield Pathname.new(f)}

と同じです。

ブロックを省略した場合は Enumerator を返します。

@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。

@see Find.#find...

Pathname#find(ignore_error: true) {|pathname| ...} -> nil (18233.0)

self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。

...クを実行します。

require 'find'
Find
.find(self.to_s) {|f| yield Pathname.new(f)}

と同じです。

ブロックを省略した場合は Enumerator を返します。

@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。

@see Find.#find...

Gem::Commands::DependencyCommand#find_gems(name, source_index) -> Hash (15202.0)

与えられた Gem の名前をインデックスから検索します。

...与えられた Gem の名前をインデックスから検索します。

@param name Gem の名前を指定します。

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

@see Gem::SourceIndex#search...

Gem::DependencyInstaller#find_gems_with_sources(dep) -> Array (15202.0)

与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを 返します。

...ッチする Gem::Specification のインスタンスと URI のペアのリストを
返します。

G
em はローカル (Dir.pwd) とリモート (Gem.sources) の両方から検索します。
結果は、バージョンの新しい順が先にきます。また、ローカルの Gem も先に...
...きます。

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

絞り込み条件を変える

RDoc::Context#find_enclosing_module_named(name) -> RDoc::NormalModule | nil (12218.0)

find a module at a higher scope

...
find
a module at a higher scope...

Gem::GemPathSearcher#find_all(path) -> [Gem::Specification] (12208.0)

与えられたパスにマッチする Gem::Specification を全て返します。

...与えられたパスにマッチする Gem::Specification を全て返します。

@see Enumerable#find_all...

Gem::CommandManager#find_command(command_name) -> Gem::Command | nil (12202.0)

登録されているコマンドからマッチしたものを返します。

...れているコマンドからマッチしたものを返します。

@param command_name コマンド名を文字列で指定します。

@return Gem::Command のサブクラスのインスタンスを返します。

@raise RuntimeError マッチする可能性のあるコマンドが複数あ...

Gem::SpecFetcher#find_matching(dependency, all = false, matching_platform = true) -> Array (12202.0)

依存関係を満たす gemspec の名前の配列を返します。

...依存関係を満たす gemspec の名前の配列を返します。

@param dependency 依存関係を指定します。
@param all 真を指定するとマッチする全てのバージョンの情報を返します。
@param matching_platform 偽を指定すると全てのプラットフォー...
...ムの情報を返します。

@see Gem::Dependency...
<< 1 2 3 ... > >>