426件ヒット
[101-200件を表示]
(0.041秒)
種類
- インスタンスメソッド (234)
- 特異メソッド (120)
- モジュール関数 (60)
- クラス (12)
ライブラリ
- ビルトイン (144)
- matrix (24)
- pathname (60)
- psych (48)
- rake (12)
- rubygems (12)
-
rubygems
/ ext / builder (12) -
rubygems
/ ext / configure _ builder (12) -
rubygems
/ ext / ext _ conf _ builder (12) -
rubygems
/ ext / rake _ builder (12) -
rubygems
/ installer (12) -
rubygems
/ source _ index (12) -
rubygems
/ version (12) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
webrick
/ httpresponse (12) -
webrick
/ httpstatus (12)
クラス
- Complex (48)
- File (12)
-
File
:: Stat (12) -
Gem
:: Ext :: Builder (12) -
Gem
:: Ext :: ConfigureBuilder (12) -
Gem
:: Ext :: ExtConfBuilder (12) -
Gem
:: Ext :: RakeBuilder (12) -
Gem
:: Installer (12) -
Gem
:: SourceIndex (12) -
Gem
:: Version (12) - Matrix (24)
- Numeric (24)
- Pathname (60)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Document (36) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
WEBrick
:: HTTPResponse (12)
モジュール
- FileTest (12)
- Gem (12)
- Kernel (36)
-
WEBrick
:: HTTPStatus (12)
キーワード
- Complex (36)
- build (36)
- children (12)
- correct? (12)
- directory (12)
- directory? (66)
-
each
_ child (24) -
ensure
_ gem _ subdirectories (12) -
installed
_ spec _ directories (12) - new (12)
- rectangular (48)
- redirect? (12)
- redirector (12)
-
relative
_ path _ from (12) -
set
_ redirect (12) -
start
_ document (12) -
tag
_ directives (12) -
tag
_ directives= (12) - unpack (12)
検索結果
先頭5件
-
Matrix
# rectangular -> [Matrix , Matrix] (6113.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
FileTest
. # directory?(file) -> bool (6112.0) -
ファイルがディレクトリの時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...します。
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@raise IOError 指定された IO オブジェクト file が既に close されていた場合に発生します。
例:
FileTest.directory?('/etc') # => true
FileTest.directory?('/etc/pa......sswd') # => false
f = File.open('/etc')
FileTest.directory?(f) # => true
f.close
FileTest.directory?(f) # => IOError: closed stream... -
Psych
:: Nodes :: Document # tag _ directives=(tags) (6112.0) -
tag directive の配列を設定します。
...tag directive の配列を設定します。
@param tags 設定する tag directive の配列
@see Psych::Nodes::Document#tag_directives,
Psych::Nodes::Document.new... -
Shell
# directory?(file) -> bool (6112.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
:: CommandProcessor # directory?(file) -> bool (6112.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
:: Filter # directory?(file) -> bool (6112.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
WEBrick
:: HTTPResponse # set _ redirect(status , url) -> () (6112.0) -
指定された url にリダイレクトするためのヘッダと内容(エンティティボディ)を 設定し例外 status を発生させます。
...ためのヘッダと内容(エンティティボディ)を
設定し例外 status を発生させます。
@param status WEBrick::HTTPStatus::Redirect を指定します。
@param url URL を指定します。
例:
require 'webrick'
res.set_redirect WEBrick::HTTPStatus::TemporaryRedirect... -
File
. directory?(path) -> bool (6106.0) -
FileTest.#directory? と同じです。
...FileTest.#directory? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
File
:: Stat # directory? -> bool (6106.0) -
ディレクトリの時に真を返します。
...ディレクトリの時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
//}
@see FileTest.#directory?... -
Gem
. # ensure _ gem _ subdirectories (6106.0) -
Gem をインストールするために必要なサブディレクトリを適切に作成します。
...Gem をインストールするために必要なサブディレクトリを適切に作成します。
ディレクトリを作成する権限が無い場合もこのメソッドからは例外は発生しません。
@see Gem::DIRECTORIES... -
Gem
:: SourceIndex . installed _ spec _ directories -> [String] (6106.0) -
gemspec ファイルがインストールされているディレクトリのリストを返します。
...gemspec ファイルがインストールされているディレクトリのリストを返します。
@see Gem.#path...