るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.127秒)
トップページ > クエリ:t[x] > モジュール:RakeFileUtils[x] > クエリ:nowrite_flag=[x]

別のキーワード

  1. rake nowrite_flag=
  2. rake nowrite_flag
  3. rake nowrite
  4. rakefileutils nowrite_flag=
  5. xmldecl nowrite

ライブラリ

検索結果

RakeFileUtils.nowrite_flag=(flag) (24213.0)

実際に動作を行うかどうか設定します。

...。真を指定すると動作を実行しません。

//emlist[][ruby]{
# Rakefile での記載例とする

t
ask default: :sample_file_task

file :sample_file_task do |t|
RakeFileUtils
.nowrite_flag # => false
RakeFileUtils
.nowrite_flag = true
RakeFileUtils
.nowrite_flag # => true
end
//}...