別のキーワード
ライブラリ
- ビルトイン (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) -
NEWS for Ruby 2
. 5 . 0 (8) -
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) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ commands / install _ command (12)
検索結果
先頭5件
-
Gem
:: Specification # executable -> String (18101.0) -
実行可能ファイル名を返します。
実行可能ファイル名を返します。 -
Gem
:: Specification # default _ executable=(executable) (6208.0) -
Gem パッケージ内で gem コマンド経由で実行するファイルをセットします。
...Gem パッケージ内で gem コマンド経由で実行するファイルをセットします。
@param executable 実行ファイルを指定します。... -
Gem
:: Specification # executable=(executable) (6208.0) -
実行可能ファイル名をセットします。
...実行可能ファイル名をセットします。
@param executable 実行可能ファイル名を指定します。... -
Gem
:: Specification # executables=(executables) (6200.0) -
実行可能ファイル名のリストをセットします。
...実行可能ファイル名のリストをセットします。
@param executables 実行可能ファイル名のリストを指定します。... -
Pathname
# executable? -> bool (6123.0) -
FileTest.executable?(self.to_s) と同じです。
...FileTest.executable?(self.to_s) と同じです。
@see FileTest.#executable?... -
Pathname
# executable _ real? -> bool (6123.0) -
FileTest.executable_real?(self.to_s) と同じです。
...FileTest.executable_real?(self.to_s) と同じです。
@see FileTest.#executable_real?... -
File
. executable?(path) -> bool (6117.0) -
FileTest.#executable? と同じです。
...FileTest.#executable? と同じです。
@param path パスを表す文字列を指定します。... -
File
. executable _ real?(path) -> bool (6117.0) -
FileTest.#executable_real? と同じです。
...FileTest.#executable_real? と同じです。
@param path パスを表す文字列を指定します。... -
FileTest
. # executable?(file) -> bool (6113.0) -
ファイルがカレントプロセスにより実行できる時に真を返しま す。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
@param file ファイル名を表す文字列を指定します。
例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true...