| Server IP : 217.160.0.244 / Your IP : 216.73.217.138 Web Server : Apache System : Linux infong-eu155 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u100174116 ( 6746176) PHP Version : 8.5.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/lib/ruby/gems/3.3.0/gems/rbs-3.4.0/core/ |
Upload File : |
# <!-- rdoc-file=rbconfig.rb -->
# The module storing Ruby interpreter configurations on building.
#
# This file was created by mkconfig.rb when ruby was built. It contains build
# information for ruby which is used e.g. by mkmf to build compatible native
# extensions. Any changes made to this file will be lost the next time ruby is
# built.
#
module RbConfig
# <!-- rdoc-file=rbconfig.rb -->
# The hash configurations stored.
#
CONFIG: Hash[String, String]
# <!-- rdoc-file=rbconfig.rb -->
# DESTDIR on make install.
#
DESTDIR: String
# <!-- rdoc-file=rbconfig.rb -->
# Almost same with CONFIG. MAKEFILE_CONFIG has other variable reference like
# below.
#
# MAKEFILE_CONFIG["bindir"] = "$(exec_prefix)/bin"
#
# The values of this constant is used for creating Makefile.
#
# require 'rbconfig'
#
# print <<-END_OF_MAKEFILE
# prefix = #{RbConfig::MAKEFILE_CONFIG['prefix']}
# exec_prefix = #{RbConfig::MAKEFILE_CONFIG['exec_prefix']}
# bindir = #{RbConfig::MAKEFILE_CONFIG['bindir']}
# END_OF_MAKEFILE
#
# => prefix = /usr/local
# exec_prefix = $(prefix)
# bindir = $(exec_prefix)/bin MAKEFILE_CONFIG = {}
#
# RbConfig.expand is used for resolving references like above in rbconfig.
#
# require 'rbconfig'
# p RbConfig.expand(RbConfig::MAKEFILE_CONFIG["bindir"])
# # => "/usr/local/bin"
#
MAKEFILE_CONFIG: Hash[String, String]
# <!-- rdoc-file=rbconfig.rb -->
# Ruby installed directory.
#
TOPDIR: String
# <!--
# rdoc-file=rbconfig.rb
# - RbConfig.expand(val) -> string
# - RbConfig.expand(val, config) -> string
# -->
# expands variable with given `val` value.
#
# RbConfig.expand("$(bindir)") # => /home/foobar/all-ruby/ruby19x/bin
#
def self.expand: (String val, ?Hash[String, String] config) -> String
# <!--
# rdoc-file=rbconfig.rb
# - RbConfig.fire_update!(key, val) -> array
# - RbConfig.fire_update!(key, val, mkconf, conf) -> array
# -->
# updates `key+ in `mkconf` with `val`, and all values depending on
# the `key` in `mkconf`.
#
# RbConfig::MAKEFILE_CONFIG.values_at("CC", "LDSHARED") # => ["gcc", "$(CC) -shared"]
# RbConfig::CONFIG.values_at("CC", "LDSHARED") # => ["gcc", "gcc -shared"]
# RbConfig.fire_update!("CC", "gcc-8") # => ["CC", "LDSHARED"]
# RbConfig::MAKEFILE_CONFIG.values_at("CC", "LDSHARED") # => ["gcc-8", "$(CC) -shared"]
# RbConfig::CONFIG.values_at("CC", "LDSHARED") # => ["gcc-8", "gcc-8 -shared"]
#
# returns updated keys list, or `nil` if nothing changed.
def self.fire_update!: (String key, String val, ?Hash[String, String] mkconf, ?Hash[String, String] conf) -> Array[String]?
# <!--
# rdoc-file=rbconfig.rb
# - RbConfig.ruby -> path
# -->
#
# returns the absolute pathname of the ruby command.
def self.ruby: () -> String
end