るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.099秒)

別のキーワード

  1. rake timestamp
  2. socket so_timestamp
  3. socket scm_timestamp
  4. etc pc_timestamp_resolution
  5. task timestamp

ライブラリ

検索結果

Rake::FileTask#timestamp -> Time | Rake::LateTime (54328.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
//}