836件ヒット
[1-100件を表示]
(0.175秒)
ライブラリ
- ビルトイン (374)
- matrix (72)
- mkmf (72)
-
net
/ http (12) - pathname (24)
- rake (12)
-
rdoc
/ context (60) -
rdoc
/ top _ level (24) -
rubygems
/ command _ manager (24) -
rubygems
/ commands / dependency _ command (24) -
rubygems
/ commands / which _ command (12) -
rubygems
/ dependency _ installer (24) -
rubygems
/ dependency _ list (12) -
rubygems
/ gem _ path _ searcher (24) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (12) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) - socket (24)
クラス
- Array (137)
- BasicObject (12)
-
Enumerator
:: Lazy (31) -
Gem
:: CommandManager (24) -
Gem
:: Commands :: DependencyCommand (24) -
Gem
:: Commands :: WhichCommand (12) -
Gem
:: DependencyInstaller (24) -
Gem
:: DependencyList (12) -
Gem
:: GemPathSearcher (24) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (12) - Matrix (72)
-
Net
:: HTTP (12) - Pathname (24)
-
RDoc
:: Context (60) -
RDoc
:: TopLevel (24) - Range (24)
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Socket
:: AncillaryData (12) -
Socket
:: Ifaddr (12) - String (12)
モジュール
- Enumerable (158)
- Kernel (84)
キーワード
- bsearch (48)
-
bsearch
_ index (20) - detect (24)
- filter (21)
-
find
_ all (48) -
find
_ command (12) -
find
_ command _ possibilities (12) -
find
_ enclosing _ module _ named (12) -
find
_ executable (12) -
find
_ gems (12) -
find
_ gems _ with _ sources (12) -
find
_ header (12) -
find
_ index (108) -
find
_ library (24) -
find
_ local _ symbol (24) -
find
_ matching (12) -
find
_ module _ named (24) -
find
_ name (24) -
find
_ paths (12) -
find
_ reverse _ dependencies (12) -
find
_ spec _ by _ name _ and _ version (12) -
find
_ symbol (12) -
find
_ system _ command (18) -
find
_ type (24) - ifindex (12)
- index (72)
-
ipv6
_ pktinfo _ ifindex (12) - lazy (12)
-
method
_ missing (12) - namespace (12)
- pack (21)
- propfind (12)
-
record
_ location (12) - select (36)
- unpack (12)
検索結果
先頭5件
-
Gem
:: GemPathSearcher # find(path) -> Gem :: Specification | nil (21308.0) -
与えられたパスにマッチする Gem::Specification を一つだけ返します。
...与えられたパスにマッチする Gem::Specification を一つだけ返します。
@see Enumerable#find... -
Pathname
# find -> Enumerator (21233.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...すべてのファイルやディレクトリを
一つずつ引数 pathname に渡してブロックを実行します。
require 'find'
Find.find(self.to_s) {|f| yield Pathname.new(f)}
と同じです。
ブロックを省略した場合は Enumerator を返します。
@see Find.#find... -
Pathname
# find {|pathname| . . . } -> nil (21233.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...すべてのファイルやディレクトリを
一つずつ引数 pathname に渡してブロックを実行します。
require 'find'
Find.find(self.to_s) {|f| yield Pathname.new(f)}
と同じです。
ブロックを省略した場合は Enumerator を返します。
@see Find.#find... -
Pathname
# find(ignore _ error: true) -> Enumerator (21233.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...ディレクトリを
一つずつ引数 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 (21233.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...ディレクトリを
一つずつ引数 pathname に渡してブロックを実行します。
require 'find'
Find.find(self.to_s) {|f| yield Pathname.new(f)}
と同じです。
ブロックを省略した場合は Enumerator を返します。
@param ignore_error 探索中に発生した......例外を無視するかどうかを指定します。
@see Find.#find... -
Gem
:: CommandManager # find _ command(command _ name) -> Gem :: Command | nil (18402.0) -
登録されているコマンドからマッチしたものを返します。
...れているコマンドからマッチしたものを返します。
@param command_name コマンド名を文字列で指定します。
@return Gem::Command のサブクラスのインスタンスを返します。
@raise RuntimeError マッチする可能性のあるコマンドが複数あ... -
Gem
:: CommandManager # find _ command _ possibilities(command _ name) -> Array (18302.0) -
登録されているコマンドでマッチする可能性のあるものを返します。
...登録されているコマンドでマッチする可能性のあるものを返します。
@param command_name コマンド名を文字列で指定します。... -
Enumerable
# find(ifnone = nil) -> Enumerator (18221.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...none を call した結果を返します。
ブロックを省略した場合は Enumerator を返します。
@param ifnone call メソッドを持つオブジェクト (例えば Proc) を指定します。
//emlist[例][ruby]{
# 最初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i %......3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not found
//}... -
Enumerable
# find(ifnone = nil) {|item| . . . } -> object (18121.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...none を call した結果を返します。
ブロックを省略した場合は Enumerator を返します。
@param ifnone call メソッドを持つオブジェクト (例えば Proc) を指定します。
//emlist[例][ruby]{
# 最初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i %......3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not found
//}... -
Shell
:: CommandProcessor # find _ system _ command(command) (15302.0) -
@todo
@todo -
Gem
:: Commands :: WhichCommand # find _ paths(package _ name , dirs) -> Array (15202.0) -
dirs から package_name という名前を持つファイルを探索します。
...dirs から package_name という名前を持つファイルを探索します。
以下の拡張子を持つファイルが対象です。
%w[.rb .rbw .so .dll .bundle]
@param package_name ファイルの名前を指定します。
@param dirs 探索するディレクトリを文字列の...