1757件ヒット
[201-300件を表示]
(0.074秒)
ライブラリ
- ビルトイン (125)
-
cgi
/ html (72) - csv (228)
- date (12)
- logger (24)
- mkmf (24)
-
net
/ http (24) -
net
/ imap (12) - openssl (12)
- ostruct (12)
- pathname (96)
- prime (36)
- psych (24)
- pty (12)
-
rdoc
/ code _ object (24) -
rexml
/ document (480) -
rexml
/ parsers / pullparser (12) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (48)
-
rubygems
/ builder (24) -
rubygems
/ commands / build _ command (60) -
rubygems
/ config _ file (24) -
rubygems
/ indexer (12) -
rubygems
/ installer (12) -
rubygems
/ old _ format (72) -
rubygems
/ require _ paths _ builder (12) - shell (24)
-
shell
/ command-processor (24) -
shell
/ filter (24) - tsort (12)
- uri (120)
-
webrick
/ httpresponse (24)
クラス
- CSV (72)
-
CSV
:: FieldInfo (72) -
CSV
:: Row (84) - Date (12)
- Dir (21)
-
Enumerator
:: Yielder (30) -
File
:: Stat (24) -
Gem
:: Builder (24) -
Gem
:: Commands :: BuildCommand (60) -
Gem
:: ConfigFile (24) -
Gem
:: Indexer (12) -
Gem
:: Installer (12) -
Gem
:: OldFormat (72) - Integer (3)
- Logger (24)
-
Net
:: IMAP :: ThreadMember (12) - Object (16)
-
OpenSSL
:: X509 :: Name (12) - OpenStruct (12)
-
PTY
:: ChildExited (12) - Pathname (96)
-
Prime
:: TrialDivisionGenerator (36) - Proc (12)
-
Psych
:: Nodes :: Node (12) -
Psych
:: TreeBuilder (12) -
RDoc
:: CodeObject (24) -
REXML
:: Child (120) -
REXML
:: DocType (12) -
REXML
:: Document (36) -
REXML
:: Parent (132) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: XMLDecl (180) -
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Rss :: Channel (24) - Regexp (12)
-
RubyVM
:: AbstractSyntaxTree :: Node (7) - Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (24) -
URI
:: LDAP (120) -
WEBrick
:: HTTPResponse (24)
モジュール
-
CGI
:: HtmlExtension (72) -
Gem
:: LocalRemoteOptions (12) -
Gem
:: RequirePathsBuilder (12) - Kernel (24)
-
Net
:: HTTPHeader (24) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12) - TSort (12)
キーワード
- << (24)
- == (12)
- [] (24)
- []= (12)
- add (24)
-
add
_ bulk _ threshold _ option (12) -
add
_ field (12) - arguments (12)
- attributes (12)
- attributes= (12)
- build (12)
-
build
_ extensions (12) -
build
_ indices (10) -
build
_ indicies (2) -
bulk
_ threshold (12) -
bulk
_ threshold= (12) - bytes (12)
- casefold? (12)
- ceildiv (3)
- children (62)
- clone (12)
- convert (24)
- delete (12)
-
delete
_ at (12) -
delete
_ field (12) -
delete
_ if (12) -
dir
_ config (12) - dn (12)
- dn= (12)
- document (12)
-
document
_ children (12) -
document
_ children= (12) - dowrite (12)
- each (12)
-
each
_ child (62) - encoding (12)
- encoding= (12)
- execute (12)
- extensions (12)
- extensions= (12)
- field (12)
- field? (12)
-
field
_ row? (12) -
field
_ size _ limit (12) - fields (12)
-
file
_ entries (12) -
file
_ entries= (12) -
file
_ field (24) - filter (12)
- filter= (12)
-
gem
_ path (12) -
gem
_ path= (12) -
get
_ fields (12) -
hash
_ old (12) - header (12)
- header= (12)
-
header
_ convert (24) - index (24)
- index= (12)
-
insert
_ after (12) -
insert
_ before (12) - lastBuildDate (24)
- lastBuildDate= (24)
- line (12)
- line= (12)
- link (18)
-
link
_ command (12) -
load
_ gemspecs (12) -
make
_ link (12) -
make
_ symlink (12) - next (12)
-
next
_ sibling (12) -
next
_ sibling= (12) -
node
_ type (12) - nowrite (12)
- parent (12)
- parent= (12)
-
password
_ field (24) -
previous
_ sibling (12) -
previous
_ sibling= (12) - realdirpath (12)
- remove (12)
-
replace
_ child (12) -
replace
_ with (12) - rewind (12)
- root (12)
- scope (12)
- scope= (12)
-
sev
_ threshold (12) -
sev
_ threshold= (12) - spec (12)
- spec= (12)
-
stand
_ alone? (12) - standalone (12)
- standalone= (12)
- status (12)
- succ (12)
- success (12)
- symlink (18)
-
text
_ field (24) -
to
_ a (12) -
to
_ proc (6) -
tsort
_ each _ child (12) -
unconverted
_ fields? (12) - usage (12)
-
values
_ at (12) - version (12)
- version= (12)
-
world
_ readable? (42) -
world
_ writable? (42) -
write
_ require _ paths _ file _ if _ needed (12) - writeencoding (12)
- writethis (12)
-
xml
_ decl (12) - xmldecl (36)
- xmldecl? (12)
- yaml? (12)
- yield (24)
-
yield
_ self (16)
検索結果
先頭5件
-
CSV
:: Row # field _ row? -> bool (6101.0) -
フィールド行であれば真を返します。そうでなければ偽を返します。
...ド行であれば真を返します。そうでなければ偽を返します。
//emlist[例][ruby]{
require "csv"
header_row = CSV::Row.new(["header1", "header2"], [], true)
row = CSV::Row.new(["header1", "header2"], [1, 2])
header_row.field_row? # => false
row.field_row? # => true
//}... -
CSV
:: Row # fields(*headers _ and _ or _ indices) -> Array (6101.0) -
与えられた引数に対応する値の配列を返します。
...与えられた引数に対応する値の配列を返します。
要素の探索に CSV::Row#field を使用しています。
@param headers_and_or_indices ヘッダの名前かインデックスか Range
のインスタンスか第 1 要素がヘッダの名前... -
Dir
# children -> [String] (6101.0) -
ディレクトリのファイルエントリ名のうち、 "." と ".." をのぞいた配列を返します。
...ディレクトリのファイルエントリ名のうち、
"." と ".." をのぞいた配列を返します。
@raise IOError 既に self が close している場合に発生します。
//emlist[例][ruby]{
Dir.open('.'){|d|
p d.children # => ["bar", "foo"]
}
//}
@see Dir.children... -
Dir
# each _ child -> Enumerator (6101.0) -
ディレクトリの "." と ".." をのぞく各エントリを表す文字列を引数として、 ブロックを評価します。
...合、各エントリを文字列として保持する
Enumerator
オブジェクトを返します。
@raise IOError 既に self が close している場合に発生します。
//emlist[例][ruby]{
Dir.open('.').each_child{|f|
p f
}
#=> "bar"
# "foo"
//}
@see Dir#each
@see Dir.each_child... -
Dir
# each _ child {|item| . . . } -> self (6101.0) -
ディレクトリの "." と ".." をのぞく各エントリを表す文字列を引数として、 ブロックを評価します。
...合、各エントリを文字列として保持する
Enumerator
オブジェクトを返します。
@raise IOError 既に self が close している場合に発生します。
//emlist[例][ruby]{
Dir.open('.').each_child{|f|
p f
}
#=> "bar"
# "foo"
//}
@see Dir#each
@see Dir.each_child... -
File
:: Stat # world _ readable? -> Integer | nil (6101.0) -
全てのユーザから読めるならば、そのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。
...ミッションを表す
整数を返します。そうでない場合は nil を返します。
整数の意味はプラットフォームに依存します。
//emlist[][ruby]{
m = File.stat("/etc/passwd").world_readable? # => 420
sprintf("%o", m) # => "644"
//}... -
File
:: Stat # world _ writable? -> Integer | nil (6101.0) -
全てのユーザから書き込めるならば、そのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。
...ーミッションを表す
整数を返します。そうでない場合は nil を返します。
整数の意味はプラットフォームに依存します。
//emlist[][ruby]{
m = File.stat("/tmp").world_writable? # => 511
sprintf("%o", m) # => "777"
//}... -
Gem
:: ConfigFile # bulk _ threshold -> Integer (6101.0) -
一括ダウンロードの閾値を返します。 インストールしていない Gem がこの数値を越えるとき一括ダウンロードを行います。
一括ダウンロードの閾値を返します。
インストールしていない Gem がこの数値を越えるとき一括ダウンロードを行います。 -
Gem
:: Indexer # build _ indices (6101.0) -
インデックスを構築します。
インデックスを構築します。 -
Gem
:: Indexer # build _ indicies (6101.0) -
インデックスを構築します。
インデックスを構築します。 -
Gem
:: Installer # build _ extensions (6101.0) -
拡張ライブラリをビルドします。
拡張ライブラリをビルドします。
拡張ライブラリをビルドするためのファイルタイプとして有効であるのは、
extconf.rb, configure script, Rakefile, mkmf_files です。 -
Gem
:: LocalRemoteOptions # add _ bulk _ threshold _ option (6101.0) -
オプション --bulk-threshold を追加します。
...オプション --bulk-threshold を追加します。...