Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
share /
gems /
gems /
rbs-1.4.0 /
sig /
Delete
Unzip
Name
Size
Permission
Date
Action
ancestor_builder.rbs
5.29
KB
-rw-r--r--
2024-06-26 17:25
ancestor_graph.rbs
1.27
KB
-rw-r--r--
2024-06-26 17:25
annotation.rbs
518
B
-rw-r--r--
2024-06-26 17:25
buffer.rbs
659
B
-rw-r--r--
2024-06-26 17:25
builtin_names.rbs
795
B
-rw-r--r--
2024-06-26 17:25
char_scanner.rbs
158
B
-rw-r--r--
2024-06-26 17:25
cli.rbs
1.65
KB
-rw-r--r--
2024-06-26 17:25
comment.rbs
529
B
-rw-r--r--
2024-06-26 17:25
constant.rbs
502
B
-rw-r--r--
2024-06-26 17:25
constant_table.rbs
1.09
KB
-rw-r--r--
2024-06-26 17:25
declarations.rbs
7.96
KB
-rw-r--r--
2024-06-26 17:25
definition.rbs
4.43
KB
-rw-r--r--
2024-06-26 17:25
definition_builder.rbs
2.5
KB
-rw-r--r--
2024-06-26 17:25
environment.rbs
3.89
KB
-rw-r--r--
2024-06-26 17:25
environment_loader.rbs
3.65
KB
-rw-r--r--
2024-06-26 17:25
environment_walker.rbs
991
B
-rw-r--r--
2024-06-26 17:25
errors.rbs
6.31
KB
-rw-r--r--
2024-06-26 17:25
location.rbs
4.13
KB
-rw-r--r--
2024-06-26 17:25
locator.rbs
1.56
KB
-rw-r--r--
2024-06-26 17:25
members.rbs
6.63
KB
-rw-r--r--
2024-06-26 17:25
method_builder.rbs
2.86
KB
-rw-r--r--
2024-06-26 17:25
method_types.rbs
805
B
-rw-r--r--
2024-06-26 17:25
namespace.rbs
3.26
KB
-rw-r--r--
2024-06-26 17:25
parser.rbs
1.01
KB
-rw-r--r--
2024-06-26 17:25
polyfill.rbs
378
B
-rw-r--r--
2024-06-26 17:25
rbs.rbs
255
B
-rw-r--r--
2024-06-26 17:25
repository.rbs
2.27
KB
-rw-r--r--
2024-06-26 17:25
substitution.rbs
1.38
KB
-rw-r--r--
2024-06-26 17:25
type_alias_dependency.rbs
585
B
-rw-r--r--
2024-06-26 17:25
type_name_resolver.rbs
618
B
-rw-r--r--
2024-06-26 17:25
typename.rbs
2.03
KB
-rw-r--r--
2024-06-26 17:25
types.rbs
10.12
KB
-rw-r--r--
2024-06-26 17:25
util.rbs
128
B
-rw-r--r--
2024-06-26 17:25
validator.rbs
488
B
-rw-r--r--
2024-06-26 17:25
variance_calculator.rbs
927
B
-rw-r--r--
2024-06-26 17:25
vendorer.rbs
1.43
KB
-rw-r--r--
2024-06-26 17:25
version.rbs
33
B
-rw-r--r--
2024-06-26 17:25
writer.rbs
1.07
KB
-rw-r--r--
2024-06-26 17:25
Save
Rename
module RBS # Set of RBS repositories. # # A repository object can handle multiple repository roots. # # repo = RBS::Repository.new() # repo.add(Pathname("vendor/rbs/gem-rbs")) # repo.add(Pathname("vendor/rbs/internal-rbs")) # repo.add(Pathname("vendor/rbs/definitely-rbs")) # # repo.lookup("minitest", "2.1.3") => Pathname or nil # # If one gem version can resolve to several directories, the last added dir wins. # class Repository class GemRBS attr_reader name: String # Array of gem dirs. # Gem dir contains directories for each version. attr_reader paths: Array[Pathname] # Hash from a version to VersionPath object. attr_reader versions(): Hash[Gem::Version, VersionPath] @versions: Hash[Gem::Version, VersionPath]? def initialize: (name: String) -> void def load!: () -> void def version_names: () -> Array[Gem::Version] def oldest_version: () -> VersionPath def latest_version: () -> VersionPath def find_best_version: (Gem::Version?) -> VersionPath # Returns true if versions is empty. def empty?: () -> bool end class VersionPath attr_reader gem: GemRBS attr_reader version: Gem::Version attr_reader path: Pathname def initialize: (gem: GemRBS, version: Gem::Version, path: Pathname) -> void end DEFAULT_STDLIB_ROOT: Pathname # Array of _root dir_s of repositories. # attr_reader dirs: Array[Pathname] attr_reader gems: Hash[String, GemRBS] # An optional keyword argument `no_stdlib` is to skip adding directory for stdlib classes. # Passing truthy value will skip loading stdlib. (You can add the stdlib root by yourself.) # def initialize: (?no_stdlib: bool) -> void # Add new _root dir_ to the repository set. # If two repository dirs have exactly same gem-version definitions, the latter overwrites the prior. # def add: (Pathname dir) -> void # Returns a directory for given `gem` name and `version`. # `version` can be `nil` for _any version_. # # If the given gem cannot be found, it returns `nil`. # def lookup: (String gem, String? version) -> Pathname? def lookup_path: (String gem, String? version) -> [GemRBS, VersionPath]? end end