るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.138秒)
トップページ > クエリ:l[x] > クエリ:options[x] > クエリ:needed?[x]

別のキーワード

  1. socket ip_options
  2. optparse options
  3. syslog options
  4. fileutils options
  5. getoptlong set_options

ライブラリ

クラス

検索結果

Rake::FileTask#needed? -> bool (21219.0)

このタスクが必要である場合は真を返します。 そうでない場合は偽を返します。

...るファイルが古い場合に真を返します。

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

task default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task.needed? # => true
IO.write("test.txt", "test")
task.needed? # => false
end
//}...