Linux server165.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 68.65.122.53 & Your IP : 216.73.216.133
Domains :
Cant Read [ /etc/named.conf ]
User : vacazsti
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby40 /
share /
gems /
gems /
rdoc-7.0.3 /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
rdoc
[ DIR ]
drwxr-xr-x
2026-05-14 08:42
rdoc.rb
6.41
KB
-rw-r--r--
2026-04-24 16:08
rubygems_plugin.rb
852
B
-rw-r--r--
2026-04-24 16:08
Save
Rename
# frozen_string_literal: true # If this file is exist, RDoc generates and removes documents by rubygems plugins. # # In follwing cases, # RubyGems directly exectute RDoc::RubygemsHook.generation_hook and RDoc::RubygemsHook#remove to generate and remove documents. # # - RDoc is used as a default gem. # - RDoc is a old version that doesn't have rubygems_plugin.rb. require_relative 'rdoc/rubygems_hook' # To install dependency libraries of RDoc, you need to run bundle install. # At that time, rdoc/markdown is not generated. # If generate and remove are executed at that time, an error will occur. # So, we can't register generate and remove to Gem at that time. begin require_relative 'rdoc/markdown' rescue LoadError else Gem.done_installing(&RDoc::RubyGemsHook.method(:generate)) Gem.pre_uninstall(&RDoc::RubyGemsHook.method(:remove)) end