Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
thread-self
/
root
/
opt
/
ruby-2.7
/
usr
/
lib
/
ruby
/
gems
/
2.7.0
/
gems
/
rake-13.0.1
/
lib
/
rake
/
//proc/thread-self/root/opt/ruby-2.7/usr/lib/ruby/gems/2.7.0/gems/rake-13.0.1/lib/rake/phony.rb
# frozen_string_literal: true # Defines a :phony task that you can use as a dependency. This allows # file-based tasks to use non-file-based tasks as prerequisites # without forcing them to rebuild. # # See FileTask#out_of_date? and Task#timestamp for more info. require "rake" task :phony Rake::Task[:phony].tap do |task| def task.timestamp # :nodoc: Time.at 0 end end