206件ヒット
[1-100件を表示]
(0.112秒)
ライブラリ
- ビルトイン (36)
-
net
/ ftp (20) - pathname (60)
- psych (36)
-
rubygems
/ indexer (12) -
rubygems
/ installer (12) -
rubygems
/ package / tar _ reader / entry (12) -
shell
/ command-processor (6) -
webrick
/ httpresponse (12)
クラス
- Complex (24)
-
File
:: Stat (12) -
Gem
:: Indexer (12) -
Gem
:: Installer (12) -
Gem
:: Package :: TarReader :: Entry (12) -
Net
:: FTP :: MLSxEntry (20) - Pathname (60)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Document (24) -
Shell
:: CommandProcessor (6) -
WEBrick
:: HTTPResponse (12)
キーワード
- children (12)
- directory? (52)
-
directory
_ makable? (10) -
each
_ child (24) -
make
_ temp _ directories (12) - rectangular (12)
-
relative
_ path _ from (12) -
set
_ redirect (12) -
start
_ document (12) -
tag
_ directives (12) -
tag
_ directives= (12) - unpack (12)
検索結果
先頭5件
-
Complex
# rect -> [Numeric , Numeric] (21126.0) -
実部と虚部を配列にして返します。
...実部と虚部を配列にして返します。
//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}
@see Numeric#rect... -
Gem
:: Indexer # make _ temp _ directories (12201.0) -
一時的に使用するディレクトリを作成します。
一時的に使用するディレクトリを作成します。 -
Pathname
# relative _ path _ from(base _ directory) -> Pathname (9301.0) -
base_directory から self への相対パスを求め、その内容の新しい Pathname オブジェクトを生成して返します。
...ase_directory から self への相対パスを求め、その内容の新しい Pathname
オブジェクトを生成して返します。
パス名の解決は文字列操作によって行われ、ファイルシステムをアクセス
しません。
self が相対パスなら base_directory......が絶対パスなら
base_directory も絶対パスでなければなりません。
@param base_directory ベースディレクトリを表す Pathname オブジェクトを指定します。
@raise ArgumentError Windows上でドライブが違うなど、base_directory から self への相対......パスが求められないときに例外が発生します。
//emlist[例][ruby]{
require 'pathname'
path = Pathname.new("/tmp/foo")
base = Pathname.new("/tmp")
path.relative_path_from(base) # => #<Pathname:foo>
//}... -
Complex
# rectangular -> [Numeric , Numeric] (9126.0) -
実部と虚部を配列にして返します。
...実部と虚部を配列にして返します。
//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}
@see Numeric#rect... -
Gem
:: Package :: TarReader :: Entry # directory? -> bool (9101.0) -
自身がディレクトリであれば、真を返します。 そうでない場合は、偽を返します。
自身がディレクトリであれば、真を返します。
そうでない場合は、偽を返します。 -
Net
:: FTP :: MLSxEntry # directory? -> bool (9101.0) -
エントリがディレクトリであれば true を返します。
...エントリがディレクトリであれば true を返します。
Net::FTP::MLSxEntry#type が "dir"、 "pdir"、 "cdir"、
のいずれかであれば true を返します。... -
Net
:: FTP :: MLSxEntry # directory _ makable? -> bool (9101.0) -
ディレクトリを作成可能ならば true を返します。
...ディレクトリを作成可能ならば true を返します。
Net::FTP#mkdir でディレクトリを作成可能かどうかを意味します。... -
Pathname
# directory? -> bool (9101.0) -
FileTest.directory?(self.to_s) と同じです。
...FileTest.directory?(self.to_s) と同じです。
@see FileTest.#directory?... -
Psych
:: Nodes :: Document # tag _ directives -> [[String , String]] (9101.0) -
tag directive の配列を返します。
...tag directive の配列を返します。
@see Psych::Nodes::Document#tag_directives=,
Psych::Nodes::Document.new...