2件ヒット
[1-2件を表示]
(0.054秒)
別のキーワード
クラス
モジュール
- FileUtils (1)
検索結果
-
FileUtils
# ruby(*args) {|result , status| . . . } (73084.0) -
与えられた引数で Ruby インタプリタを実行します。
与えられた引数で Ruby インタプリタを実行します。
@param args Ruby インタプリタに与える引数を指定します。
例:
ruby %{-pe '$_.upcase!' <README}
@see Kernel.#sh -
Rake
:: Application # tty _ output=(tty _ output _ state) (346.0) -
TTY に対する出力状態を上書きします。
...を指定します
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.tty_output? # => false
Rake.application.tty_output = "debug output" # => "debug output"
Rake.application.tty_output? #...