Linux server64.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 : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
prism /
translation /
Delete
Unzip
Name
Size
Permission
Date
Action
parser
[ DIR ]
drwxr-xr-x
2026-02-10 10:04
ripper
[ DIR ]
drwxr-xr-x
2026-02-10 10:04
parser.rb
14.14
KB
-rw-r--r--
2026-01-27 16:00
parser33.rb
262
B
-rw-r--r--
2026-01-27 16:00
parser34.rb
262
B
-rw-r--r--
2026-01-27 16:00
parser35.rb
262
B
-rw-r--r--
2026-01-27 16:00
parser_current.rb
604
B
-rw-r--r--
2026-01-27 16:00
ripper.rb
94.94
KB
-rw-r--r--
2026-01-27 16:00
ruby_parser.rb
53.51
KB
-rw-r--r--
2026-01-27 16:00
Save
Rename
# frozen_string_literal: true # :markup: markdown # typed: ignore # module Prism module Translation case RUBY_VERSION when /^3\.3\./ ParserCurrent = Parser33 when /^3\.4\./ ParserCurrent = Parser34 when /^3\.5\./ ParserCurrent = Parser35 else # Keep this in sync with released Ruby. parser = Parser34 major, minor, _patch = Gem::Version.new(RUBY_VERSION).segments warn "warning: `Prism::Translation::Current` is loading #{parser.name}, " \ "but you are running #{major}.#{minor}." ParserCurrent = parser end end end