るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.066秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:task[x] > クラス:Rake::FileTask[x]

別のキーワード

  1. rake task
  2. task clear
  3. rake define_task
  4. rake empty_task_args
  5. task []

ライブラリ

キーワード

検索結果

Rake::FileTask#needed? -> bool (3026.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
//}...

Rake::FileTask#timestamp -> Time | Rake::LateTime (3020.0)

ファイルタスクのタイムスタンプを返します。

...ファイルタスクのタイムスタンプを返します。

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

task
default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task
.timestamp # => #<Rake::LateTime:0x2ba58f0>
end
//}...