288件ヒット
[1-100件を表示]
(0.075秒)
種類
- インスタンスメソッド (192)
- 特異メソッド (48)
- モジュール関数 (24)
- 定数 (12)
- ライブラリ (12)
ライブラリ
- ビルトイン (72)
- mkmf (12)
- pathname (24)
-
rubygems
/ dependency _ installer (24) -
rubygems
/ installer (12) -
rubygems
/ specification (84) -
rubygems
/ uninstaller (12) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12)
クラス
- File (24)
-
File
:: Stat (24) -
Gem
:: DependencyInstaller (24) -
Gem
:: Installer (12) -
Gem
:: Specification (84) -
Gem
:: Uninstaller (12) - Pathname (24)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12)
キーワード
-
DEFAULT
_ OPTIONS (12) -
add
_ bindir (12) -
default
_ executable (12) -
default
_ executable= (12) - executable= (12)
- executable? (66)
-
executable
_ real? (66) - executables (12)
- executables= (12)
-
find
_ executable (12) - new (24)
-
remove
_ executables (12) -
rubygems
/ commands / install _ command (12)
検索結果
先頭5件
-
Gem
:: Specification # executable -> String (24201.0) -
実行可能ファイル名を返します。
実行可能ファイル名を返します。 -
FileTest
. # executable?(file) -> bool (15313.0) -
ファイルがカレントプロセスにより実行できる時に真を返しま す。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
@param file ファイル名を表す文字列を指定します。
例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true... -
FileTest
. # executable _ real?(file) -> bool (15313.0) -
ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...どには 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.tx......t") # => false
//}... -
File
. executable?(path) -> bool (15217.0) -
FileTest.#executable? と同じです。
...FileTest.#executable? と同じです。
@param path パスを表す文字列を指定します。... -
File
. executable _ real?(path) -> bool (15217.0) -
FileTest.#executable_real? と同じです。
...FileTest.#executable_real? と同じです。
@param path パスを表す文字列を指定します。... -
File
:: Stat # executable? -> bool (15207.0) -
実効ユーザ/グループIDで実行できる時に真を返します。
...実効ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable?
# 例
#=> true
//}... -
File
:: Stat # executable _ real? -> bool (15207.0) -
実ユーザ/グループIDで実行できる時に真を返します。
...実ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable_real?
#例
#=> true
//}... -
Gem
:: Specification # executable=(executable) (12408.0) -
実行可能ファイル名をセットします。
...実行可能ファイル名をセットします。
@param executable 実行可能ファイル名を指定します。... -
Gem
:: Specification # executables=(executables) (12400.0) -
実行可能ファイル名のリストをセットします。
...実行可能ファイル名のリストをセットします。
@param executables 実行可能ファイル名のリストを指定します。...