212件ヒット
[1-100件を表示]
(0.193秒)
ライブラリ
- ビルトイン (66)
- mkmf (11)
-
rubygems
/ dependency _ installer (22) -
rubygems
/ installer (11) -
rubygems
/ specification (44) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12)
クラス
- File (22)
-
File
:: Stat (22) -
Gem
:: DependencyInstaller (22) -
Gem
:: Installer (11) -
Gem
:: Specification (44) - Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12)
キーワード
-
DEFAULT
_ OPTIONS (11) -
add
_ bindir (11) -
default
_ executable (11) - executable? (51)
-
executable
_ real? (51) - executables (11)
-
find
_ executable (11) - new (22)
-
ruby 1
. 8 . 4 feature (11) -
rubygems
/ commands / install _ command (11)
検索結果
先頭5件
-
Gem
:: Specification # executable -> String (27401.0) -
実行可能ファイル名を返します。
実行可能ファイル名を返します。 -
Kernel
# find _ executable(bin , path = nil) -> String | nil (18601.0) -
パス path から実行ファイル bin を探します。
...パス path から実行ファイル bin を探します。
実行ファイルが見つかった場合は、そのフルパスを返します。
実行ファイルが見つからなかった場合は、nilを返します。
このメソッドは Makefile を変更しません。
@param bin 実行......ファイルの名前を指定します。
@param path パスを指定します。デフォルトは環境変数 PATH です。
環境変数 PATH が定義されていない場合は /usr/local/bin,
/usr/ucb, /usr/bin, /bin を使います。... -
File
:: Stat # executable? -> bool (18307.0) -
実効ユーザ/グループIDで実行できる時に真を返します。
...実効ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable?
# 例
#=> true
//}... -
File
:: Stat # executable _ real? -> bool (18307.0) -
実ユーザ/グループIDで実行できる時に真を返します。
...実ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable_real?
#例
#=> true
//}... -
FileTest
. # executable?(file) -> bool (15413.0) -
ファイルがカレントプロセスにより実行できる時に真を返しま す。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
@param file ファイル名を表す文字列を指定します。
例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true... -
FileTest
. # executable _ real?(file) -> bool (15413.0) -
ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...します。
@param file ファイル名を表す文字列を指定します。
//emlist[例][ruby]{
IO.write("empty.txt", "")
File.chmod(0744, "empty.txt")
FileTest.executable_real?("empty.txt") # => true
File.chmod(0644, "empty.txt")
FileTest.executable_real?("empty.txt") # => false
//... -
Shell
:: Filter # executable?(file) -> bool (15407.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable?... -
Shell
:: Filter # executable _ real?(file) -> bool (15407.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Gem
:: Specification # default _ executable -> String | nil (15401.0) -
Gem パッケージ内で gem コマンド経由で実行するファイルを返します。
Gem パッケージ内で gem コマンド経由で実行するファイルを返します。 -
Gem
:: Specification # executables -> [String] (15400.0) -
実行可能ファイル名のリストを返します。
実行可能ファイル名のリストを返します。