Sha256: 680ba4c83d7dd731c4d8be9297dcbac16c7e7ea6b3d447c2ee1187c98cbe41d3
Contents?: true
Size: 351 Bytes
Versions: 449
Compression:
Stored size: 351 Bytes
Contents
# 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
Version data entries
449 entries across 379 versions & 104 rubygems