PHP 8.2.31
Preview: file_task.rb Size: 1.28 KB
/proc/thread-self/root/opt/alt/ruby21/lib64/ruby/2.1.0/rake/file_task.rb

require 'rake/task.rb'
require 'rake/early_time'

module Rake
  # #########################################################################
  # A FileTask is a task that includes time based dependencies.  If any of a
  # FileTask's prerequisites have a timestamp that is later than the file
  # represented by this task, then the file must be rebuilt (using the
  # supplied actions).
  #
  class FileTask < Task

    # Is this file task needed?  Yes if it doesn't exist, or if its time stamp
    # is out of date.
    def needed?
      ! File.exist?(name) || out_of_date?(timestamp)
    end

    # Time stamp for file task.
    def timestamp
      if File.exist?(name)
        File.mtime(name.to_s)
      else
        Rake::EARLY
      end
    end

    private

    # Are there any prerequisites with a later time than the given time stamp?
    def out_of_date?(stamp)
      @prerequisites.any? { |n| application[n, @scope].timestamp > stamp }
    end

    # ----------------------------------------------------------------
    # Task class methods.
    #
    class << self
      # Apply the scope to the task name according to the rules for this kind
      # of task.  File based tasks ignore the scope when creating the name.
      def scope_name(scope, task_name)
        task_name
      end
    end
  end
end

Directory Contents

Dirs: 4 × Files: 43

Name Size Perms Modified Actions
contrib DIR
- drwxr-xr-x 2024-03-03 22:53:20
Edit Download
ext DIR
- drwxr-xr-x 2024-03-03 22:53:20
Edit Download
lib DIR
- drwxr-xr-x 2024-03-03 22:53:20
Edit Download
loaders DIR
- drwxr-xr-x 2024-03-03 22:53:20
Edit Download
3.13 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
20.78 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
715 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.37 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
482 B lrw-r--r-- 2012-11-15 21:59:37
Edit Download
164 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
4.15 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
273 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
670 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
11.82 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.28 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
3.03 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
4.05 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
116 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.23 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
431 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
2.27 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
315 B lrw-r--r-- 2012-11-15 21:59:37
Edit Download
618 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
5.11 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
26 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
351 B lrw-r--r-- 2012-11-15 22:32:34
Edit Download
364 B lrw-r--r-- 2012-11-15 22:01:58
Edit Download
2.28 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
427 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
727 B lrw-r--r-- 2012-11-15 22:32:34
Edit Download
341 B lrw-r--r-- 2011-06-28 02:45:29
Edit Download
126 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
870 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
353 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
471 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
868 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
10.96 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
580 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.88 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
119 B lrw-r--r-- 2011-06-23 22:11:55
Edit Download
8.40 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
5.22 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.11 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
4.74 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download
529 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
178 B lrw-r--r-- 2013-10-11 21:35:01
Edit Download
1.54 KB lrw-r--r-- 2013-10-11 21:35:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).