Sha256: 79f9a16cc7da63d8bdea82aa410a3097c81a4c2b10a0cd2c02e5bd6fbde7cd45
Contents?: true
Size: 381 Bytes
Versions: 6982
Compression:
Stored size: 381 Bytes
Contents
# 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
Version data entries
6,982 entries across 6,870 versions & 99 rubygems