Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.189.13.48
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
rubygems /
rubygems /
package /
Delete
Unzip
Name
Size
Permission
Date
Action
tar_reader
[ DIR ]
drwxr-xr-x
2025-04-16 09:00
digest_io.rb
1.33
KB
-rw-r--r--
2025-03-20 13:38
file_source.rb
610
B
-rw-r--r--
2025-03-20 13:38
io_source.rb
814
B
-rw-r--r--
2025-03-20 13:38
old.rb
3.62
KB
-rw-r--r--
2025-03-20 13:38
source.rb
72
B
-rw-r--r--
2025-03-20 13:38
tar_header.rb
6.39
KB
-rw-r--r--
2025-03-20 13:38
tar_reader.rb
1.92
KB
-rw-r--r--
2025-03-20 13:38
tar_writer.rb
7.51
KB
-rw-r--r--
2025-03-20 13:38
Save
Rename
# frozen_string_literal: true ## # Supports reading and writing gems from/to a generic IO object. This is # useful for other applications built on top of rubygems, such as # rubygems.org. # # This is a private class, do not depend on it directly. Instead, pass an IO # object to `Gem::Package.new`. class Gem::Package::IOSource < Gem::Package::Source # :nodoc: all attr_reader :io def initialize(io) @io = io end def start @start ||= begin if io.pos > 0 raise Gem::Package::Error, "Cannot read start unless IO is at start" end value = io.read 20 io.rewind value end end def present? true end def with_read_io yield io ensure io.rewind end def with_write_io yield io ensure io.rewind end def path end end