種類
ライブラリ
- ビルトイン (470)
- find (48)
- matrix (72)
- mkmf (84)
-
net
/ http (36) - pathname (24)
-
rdoc
/ context (60) -
rdoc
/ top _ level (36) -
rexml
/ document (12) -
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 (48)
- uri (12)
クラス
- Array (113)
- BasicObject (12)
- Dir (144)
- Encoding (24)
- Enumerator (6)
-
Enumerator
:: Lazy (17) -
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 (24) - Pathname (24)
-
RDoc
:: Context (60) -
RDoc
:: TopLevel (36) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Socket
:: AncillaryData (36) -
Socket
:: Ifaddr (12) - String (12)
-
URI
:: Generic (12)
モジュール
- Enumerable (118)
- Find (36)
- Kernel (84)
-
Process
:: GID (12) -
Process
:: UID (12) -
REXML
:: Node (12)
キーワード
-
$ LDFLAGS (12) -
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 2
. 6 . 0 (7) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Propfind (12)
-
bsearch
_ index (20) - detect (24)
- entries (24)
- find (108)
-
find
_ all (48) -
find
_ bad _ fds (12) -
find
_ class _ named (12) -
find
_ class _ path (12) -
find
_ command (12) -
find
_ command _ possibilities (12) -
find
_ enclosing _ module _ named (12) -
find
_ executable (12) -
find
_ first _ recursive (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
_ proxy (12) -
find
_ reverse _ dependencies (12) -
find
_ spec _ by _ name _ and _ version (12) -
find
_ symbol (12) -
find
_ system _ command (18) -
find
_ type (24) - foreach (48)
-
from
_ name (24) - ifindex (12)
- index (72)
-
ip
_ pktinfo (12) -
ipv6
_ pktinfo (12) -
ipv6
_ pktinfo _ ifindex (12) - list (12)
-
method
_ missing (12) - new (36)
- open (48)
- pack (21)
- pack テンプレート文字列 (12)
- produce (6)
- propfind (12)
- prune (12)
-
record
_ location (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) - select (15)
- unpack (12)
-
webrick
/ cgi (12)
検索結果
先頭5件
-
Find (44000.0)
-
ディレクトリ配下のファイルを探索するためのモジュールです。
ディレクトリ配下のファイルを探索するためのモジュールです。 -
Find
. # find(*dirs) -> Enumerator (33266.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......ます。
@param dirs 探索するディレクトリを一つ以上指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
...
}
あるディレクトリ配下の探索を省略したい場合は上記のように、
Find.#prune を使用し......ます。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find(1), Find.#prune... -
Find
. # find(*dirs) {|file| . . . } -> nil (33266.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......ます。
@param dirs 探索するディレクトリを一つ以上指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
...
}
あるディレクトリ配下の探索を省略したい場合は上記のように、
Find.#prune を使用し......ます。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find(1), Find.#prune... -
Find
. # find(*dirs , ignore _ error: true) -> Enumerator (33266.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......umerator を返します。
@param dirs 探索するディレクトリを一つ以上指定します。
@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
.........
Find.#prune を使用します。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find... -
Find
. # find(*dirs , ignore _ error: true) {|file| . . . } -> nil (33266.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......umerator を返します。
@param dirs 探索するディレクトリを一つ以上指定します。
@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
.........
Find.#prune を使用します。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find... -
Find
. # prune -> () (24032.0) -
Find.#find メソッドのブロックにディレクトリが渡されたときにこ のメソッドを実行すると、そのディレクトリ配下の探索を無視します。
...
Find.#find メソッドのブロックにディレクトリが渡されたときにこ
のメソッドを実行すると、そのディレクトリ配下の探索を無視します。... -
static int find
_ bad _ fds(fd _ set *dst , fd _ set *src , int max) (18500.0) -
-
Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array (18301.0) -
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。
@param gem_name Gem の名前を指定します。
@param version Gem が満たすバージョンに関する条件を指定します。 -
Gem
:: CommandManager # find _ command _ possibilities(command _ name) -> Array (15401.0) -
登録されているコマンドでマッチする可能性のあるものを返します。
...登録されているコマンドでマッチする可能性のあるものを返します。
@param command_name コマンド名を文字列で指定します。... -
Gem
:: DependencyInstaller # find _ gems _ with _ sources(dep) -> Array (15201.0) -
与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを 返します。
...トを
返します。
Gem はローカル (Dir.pwd) とリモート (Gem.sources) の両方から検索します。
結果は、バージョンの新しい順が先にきます。また、ローカルの Gem も先にきます。
@param dep Gem::Dependency のインスタンスを指定します... -
Gem
:: DependencyList # find _ name(full _ name) -> Gem :: Specification | nil (15201.0) -
自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
自身に含まれる与えられた名前を持つ Gem::Specification のインスタンスを返します。
見つからなかった場合は nil を返します。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name