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 /
3.0.0 /
rubygems /
package /
Delete
Unzip
Name
Size
Permission
Date
Action
tar_reader
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
digest_io.rb
1.33
KB
-rw-r--r--
2021-07-07 19:08
file_source.rb
609
B
-rw-r--r--
2021-07-07 19:08
io_source.rb
813
B
-rw-r--r--
2026-06-17 20:57
old.rb
3.63
KB
-rw-r--r--
2021-07-07 19:08
source.rb
71
B
-rw-r--r--
2021-07-07 19:08
tar_header.rb
5.9
KB
-rw-r--r--
2021-07-07 19:08
tar_reader.rb
2.35
KB
-rw-r--r--
2026-06-17 20:57
tar_writer.rb
7.51
KB
-rw-r--r--
2021-07-07 19:08
Save
Rename
# frozen_string_literal: true ## # The primary source of gems is a file on disk, including all usages # internal to rubygems. # # This is a private class, do not depend on it directly. Instead, pass a path # object to `Gem::Package.new`. class Gem::Package::FileSource < Gem::Package::Source # :nodoc: all attr_reader :path def initialize(path) @path = path end def start @start ||= File.read path, 20 end def present? File.exist? path end def with_write_io(&block) File.open path, 'wb', &block end def with_read_io(&block) File.open path, 'rb', &block end end