527件ヒット
[1-100件を表示]
(0.045秒)
種類
- 特異メソッド (252)
- インスタンスメソッド (126)
- モジュール関数 (124)
- ライブラリ (13)
- 文書 (12)
ライブラリ
- ビルトイン (292)
- openssl (12)
- pathname (60)
- rake (12)
- readline (24)
-
rubygems
/ ext / configure _ builder (12) -
rubygems
/ ext / ext _ conf _ builder (12) -
rubygems
/ ext / rake _ builder (12) -
rubygems
/ installer (12) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) - socket (12)
- tmpdir (24)
クラス
- Dir (36)
-
Errno
:: EXXX (24) - File (60)
-
File
:: Stat (12) -
Gem
:: Ext :: ConfigureBuilder (12) -
Gem
:: Ext :: ExtConfBuilder (12) -
Gem
:: Ext :: RakeBuilder (12) -
Gem
:: Installer (12) - IO (12)
-
OpenSSL
:: ASN1 :: ObjectId (12) - Pathname (60)
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - Socket (12)
- SystemCallError (36)
キーワード
- build (36)
- children (12)
-
close
_ on _ exec= (12) - delete (12)
- directory? (66)
-
each
_ child (24) -
emacs
_ editing _ mode (12) - exec (12)
- exist? (24)
- fail (36)
- ftype (12)
- logger (12)
- mktmpdir (24)
- new (60)
- raise (36)
- register (12)
-
relative
_ path _ from (12) - rename (12)
-
ruby 1
. 6 feature (12) - system (28)
-
test
/ unit (1) -
unix
_ server _ loop (12) - unlink (12)
- unpack (12)
-
vi
_ editing _ mode (12)
検索結果
先頭5件
-
Kernel
# directory(dir) -> () (18113.0) -
与えられたディレクトリを作成するタスクを定義します。
...与えられたディレクトリを作成するタスクを定義します。
@param dir 作成するディレクトリを指定します。
例:
directory 'testdata/doc'... -
FileTest
. # directory?(file) -> bool (6137.0) -
ファイルがディレクトリの時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...ます。
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@raise IOError 指定された IO オブジェクト file が既に close されていた場合に発生します。
例:
FileTest.directory?('/etc') # => true
FileTest.directory?('/etc/passw......d') # => false
f = File.open('/etc')
FileTest.directory?(f) # => true
f.close
FileTest.directory?(f) # => IOError: closed stream... -
Pathname
# directory? -> bool (6129.0) -
FileTest.directory?(self.to_s) と同じです。
...FileTest.directory?(self.to_s) と同じです。
@see FileTest.#directory?... -
File
. directory?(path) -> bool (6123.0) -
FileTest.#directory? と同じです。
...FileTest.#directory? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
File
:: Stat # directory? -> bool (6119.0) -
ディレクトリの時に真を返します。
...ディレクトリの時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
//}
@see FileTest.#directory?... -
Shell
# directory?(file) -> bool (6119.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
:: CommandProcessor # directory?(file) -> bool (6119.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
:: Filter # directory?(file) -> bool (6119.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Gem
:: Ext :: ConfigureBuilder . build(extension , directory , dest _ path , results) -> Array (153.0) -
@todo
...@todo
Makefile が存在しない場合は、configure スクリプトを実行して
Makefile を作成してから make を実行します。
@param extension このメソッドでは使用しません。
@param directory
@param dest_path
@param results コマンドの実行結果を格納......します。破壊的に変更されます。
@see Gem::Ext::Builder.make... -
Gem
:: Ext :: ExtConfBuilder . build(extension , directory , dest _ path , results) -> Array (153.0) -
@todo
...@todo
Makefile が存在しない場合は、extconf.rb を実行して
Makefile を作成してから make を実行します。
@param extension ファイル名を指定します。
@param directory このメソッドでは使用していません。
@param dest_path ???
@param results コマ......ンドの実行結果を格納します。破壊的に変更されます。
@see Gem::Ext::Builder.make...