PATH: //opt/alt/ruby26/lib64/ruby/gems/2.6.0/gems/rake-12.3.3/lib/rake
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 application.rb
↓
X
📄 backtrace.rb
↓
X
📄 clean.rb
↓
X
📄 cloneable.rb
↓
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
📄 invocation_chain.rb
↓
X
📄 invocation_exception_mixin.rb
↓
X
📄 late_time.rb
↓
X
📄 linked_list.rb
↓
X
📁 loaders/
X
📄 multi_task.rb
↓
X
📄 name_space.rb
↓
X
📄 packagetask.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
📄 rule_recursion_overflow_error.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: name_space.rb
# frozen_string_literal: true ## # The NameSpace class will lookup task names in the scope defined by a # +namespace+ command. class Rake::NameSpace ## # Create a namespace lookup object using the given task manager # and the list of scopes. def initialize(task_manager, scope_list) @task_manager = task_manager @scope = scope_list.dup end ## # Lookup a task named +name+ in the namespace. def [](name) @task_manager.lookup(name, @scope) end ## # The scope of the namespace (a LinkedList) def scope @scope.dup end ## # Return the list of tasks defined in this and nested namespaces. def tasks @task_manager.tasks_in_scope(@scope) end end
SIMPAN PERUBAHAN