574件ヒット
[501-574件を表示]
(0.118秒)
ライブラリ
- ビルトイン (81)
- json (180)
-
minitest
/ unit (1) - mkmf (24)
-
net
/ imap (12) - observer (12)
- openssl (12)
- pathname (12)
- rake (36)
-
rdoc
/ stats (48) -
rdoc
/ top _ level (12) -
rubygems
/ user _ interaction (60) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) -
webrick
/ httpresponse (36)
クラス
-
File
:: Stat (12) -
Gem
:: StreamUI (60) - IO (12)
-
JSON
:: State (72) -
MiniTest
:: Unit (1) -
Net
:: IMAP (12) -
OpenSSL
:: OCSP :: BasicResponse (12) - Pathname (12)
-
Process
:: Status (36) -
RDoc
:: Options (12) -
RDoc
:: Stats (48) -
RDoc
:: TopLevel (12) -
Rake
:: Application (12) - Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) - Thread (21)
-
WEBrick
:: HTTPResponse (36)
モジュール
- FileUtils (24)
-
JSON
:: Generator :: GeneratorMethods :: Array (12) -
JSON
:: Generator :: GeneratorMethods :: FalseClass (12) -
JSON
:: Generator :: GeneratorMethods :: Float (12) -
JSON
:: Generator :: GeneratorMethods :: Hash (12) -
JSON
:: Generator :: GeneratorMethods :: Integer (12) -
JSON
:: Generator :: GeneratorMethods :: NilClass (12) -
JSON
:: Generator :: GeneratorMethods :: Object (12) -
JSON
:: Generator :: GeneratorMethods :: String (12) -
JSON
:: Generator :: GeneratorMethods :: TrueClass (12) - Kernel (24)
- Observable (12)
キーワード
- & (12)
- <=> (12)
- == (12)
- >> (12)
-
abort
_ on _ exception= (12) -
add
_ status (12) - alert (12)
-
alert
_ error (12) -
alert
_ warning (12) - changed (12)
- chown (12)
- configure (12)
-
file
_ stat= (12) - indent= (12)
- lstat (18)
- merge (12)
-
num
_ classes= (12) -
num
_ files= (12) -
num
_ methods= (12) -
num
_ modules= (12) -
object
_ nl= (12) -
report
_ on _ exception= (9) - ruby (12)
- say (12)
-
set
_ error (12) -
set
_ redirect (12) - sh (12)
- space= (12)
-
space
_ before= (12) -
static
_ path= (12) - status (13)
- status= (12)
- sync= (12)
-
terminate
_ interaction (12) -
to
_ json (108) -
try
_ static _ assert (24) -
tty
_ output= (12)
検索結果
先頭5件
-
RDoc
:: Stats # num _ modules=(val) (6007.0) -
解析したモジュールの数を指定します。
...解析したモジュールの数を指定します。
@param val 数値を指定します。... -
FileUtils
# ruby(*args) {|result , status| . . . } (3207.0) -
与えられた引数で Ruby インタプリタを実行します。
...与えられた引数で Ruby インタプリタを実行します。
@param args Ruby インタプリタに与える引数を指定します。
例:
ruby %{-pe '$_.upcase!' <README}
@see Kernel.#sh... -
FileUtils
# sh(*cmd) {|result , status| . . . } (3207.0) -
与えられたコマンドを実行します。
...@param cmd 引数の解釈に関しては Kernel.#exec を参照してください。
例:
sh %{ls -ltr}
sh 'ls', 'file with spaces'
# check exit status after command runs
sh %{grep pattern file} do |ok, res|
if ! ok
puts "pattern not found (status = #{res.exitstatu......s})"
end
end
@see Kernel.#exec, Kernel.#system... -
Gem
:: StreamUI # say(statement = & # 39;& # 39;) -> () (3207.0) -
与えられた文字列を表示します。
...与えられた文字列を表示します。
@param statement 表示する文字列を指定します。... -
Pathname
# chown(owner , group) -> Integer (3125.0) -
File.chown(owner, group, self.to_s) と同じです。
...ner, group, self.to_s) と同じです。
@param owner オーナーを指定します。
@param group グループを指定します。
//emlist[例][ruby]{
require 'pathname'
Pathname('testfile').stat.uid # => 501
Pathname('testfile').chown(502, 12)
Pathname('testfile').stat.uid # => 50... -
IO
# sync=(newstate) (207.0) -
自身を同期モードに設定すると、出力関数の呼出毎にバッファがフラッシュされます。
...自身を同期モードに設定すると、出力関数の呼出毎にバッファがフラッシュされます。
@param newstate 自身を同期モードに設定するかを boolean で指定します。
@raise IOError 既に close されていた場合に発生します。
@see IO#sync... -
Observable
# changed(state = true) -> bool (207.0) -
更新フラグを立てます。
...を指定された内容へ変更し、変更後の更新フラグの状態を返します。
明示的に引数を指定して、更新フラグを初期化することも出来ます。
@param state 更新フラグを立てる場合はtrueを、初期化する場合はfalseを指定します。...