Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
2.3.0 /
rubygems /
package /
Delete
Unzip
Name
Size
Permission
Date
Action
tar_reader
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
digest_io.rb
1.33
KB
-rw-r--r--
2016-11-21 08:58
file_source.rb
599
B
-rw-r--r--
2016-11-21 08:58
io_source.rb
769
B
-rw-r--r--
2016-11-21 08:58
old.rb
3.86
KB
-rw-r--r--
2021-12-06 00:55
source.rb
72
B
-rw-r--r--
2016-11-21 08:58
tar_header.rb
5.52
KB
-rw-r--r--
2021-12-06 00:55
tar_reader.rb
2.39
KB
-rw-r--r--
2016-11-21 08:58
tar_test_case.rb
3.85
KB
-rw-r--r--
2016-11-21 08:58
tar_writer.rb
7.43
KB
-rw-r--r--
2021-12-06 00:55
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 end def with_write_io yield io end def path end end