PATH: //opt/alt/ruby22/lib64/ruby/2.2.0/rake
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 alt_system.rb
↓
X
📄 application.rb
↓
X
📄 backtrace.rb
↓
X
📄 clean.rb
↓
X
📄 cloneable.rb
↓
X
📁 contrib/
X
📄 cpu_counter.rb
↓
X
📄 default_loader.rb
↓
X
📄 dsl_definition.rb
↓
X
📄 early_time.rb
↓
X
📁 ext/
X
📄 file_creation_task.rb
↓
X
📄 file_list.rb
↓
X
📄 file_task.rb
↓
X
📄 file_utils.rb
↓
X
📄 file_utils_ext.rb
↓
X
📄 gempackagetask.rb
↓
X
📄 invocation_chain.rb
↓
X
📄 invocation_exception_mixin.rb
↓
X
📄 late_time.rb
↓
X
📁 lib/
X
📄 linked_list.rb
↓
X
📁 loaders/
X
📄 multi_task.rb
↓
X
📄 name_space.rb
↓
X
📄 packagetask.rb
↓
X
📄 pathmap.rb
↓
X
📄 phony.rb
↓
X
📄 private_reader.rb
↓
X
📄 promise.rb
↓
X
📄 pseudo_status.rb
↓
X
📄 rake_module.rb
↓
X
📄 rake_test_loader.rb
↓
X
📄 rdoctask.rb
↓
X
📄 ruby182_test_unit_fix.rb
↓
X
📄 rule_recursion_overflow_error.rb
↓
X
📄 runtest.rb
↓
X
📄 scope.rb
↓
X
📄 task.rb
↓
X
📄 task_argument_error.rb
↓
X
📄 task_arguments.rb
↓
X
📄 task_manager.rb
↓
X
📄 tasklib.rb
↓
X
📄 testtask.rb
↓
X
📄 thread_history_display.rb
↓
X
📄 thread_pool.rb
↓
X
📄 trace_output.rb
↓
X
📄 version.rb
↓
X
📄 win32.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: 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) || @application.options.build_all end # Time stamp for file task. def timestamp if File.exist?(name) File.mtime(name.to_s) else Rake::LATE 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) Rake.from_pathname(task_name) end end end end
SIMPAN PERUBAHAN