module Gem
RubyGems is the Ruby standard for publishing and managing third party libraries.
For user documentation, see:
-
gem helpandgem help [command]
For gem developer documentation see:
-
Gem::Versionfor version dependency notes
Further RubyGems documentation can be found at:
-
RubyGems API (also available from
gem server)
RubyGems Plugins
RubyGems will load plugins in the latest version of each installed gem or $LOAD_PATH. Plugins must be named ‘rubygems_plugin’ (.rb, .so, etc) and placed at the root of your gem’s #require_path. Plugins are installed at a special location and loaded on boot.
For an example plugin, see the Graph gem which adds a gem graph command.
RubyGems Defaults, Packaging
RubyGems defaults are stored in lib/rubygems/defaults.rb. If you’re packaging RubyGems or implementing Ruby you can change RubyGems’ defaults.
For RubyGems packagers, provide lib/rubygems/defaults/operating_system.rb and override any defaults from lib/rubygems/defaults.rb.
For Ruby implementers, provide lib/rubygems/defaults/#{RUBY_ENGINE}.rb and override any defaults from lib/rubygems/defaults.rb.
If you need RubyGems to perform extra work on install or uninstall, your defaults override file can set pre/post install and uninstall hooks. See Gem::pre_install, Gem::pre_uninstall, Gem::post_install, Gem::post_uninstall.
Bugs
You can submit bugs to the RubyGems bug tracker on GitHub
Credits
RubyGems is currently maintained by Eric Hodel.
RubyGems was originally developed at RubyConf 2003 by:
-
Rich Kilmer – rich(at)infoether.com
-
Chad Fowler – chad(at)chadfowler.com
-
David Black – dblack(at)wobblini.net
-
Paul Brannan – paul(at)atdesk.com
-
Jim Weirich – jim(at)weirichhouse.org
Contributors:
-
Gavin Sinclair – gsinclair(at)soyabean.com.au
-
George Marrows – george.marrows(at)ntlworld.com
-
Dick Davies – rasputnik(at)hellooperator.net
-
Mauricio Fernandez – batsman.geo(at)yahoo.com
-
Simon Strandgaard – neoneye(at)adslhome.dk
-
Dave Glasser – glasser(at)mit.edu
-
Paul Duncan – pabs(at)pablotron.org
-
Ville Aine – vaine(at)cs.helsinki.fi
-
Eric Hodel – drbrain(at)segment7.net
-
Daniel Berger – djberg96(at)gmail.com
-
Phil Hagelberg – technomancy(at)gmail.com
-
Ryan Davis – ryand-ruby(at)zenspider.com
-
Evan Phoenix – evan(at)fallingsnow.net
-
Steve Klabnik – steve(at)steveklabnik.com
(If your name is missing, PLEASE let us know!)
License
See LICENSE.txt for permissions.
Thanks!
-The RubyGems Team
Workaround for directly loading Gem::Version in some cases
RubyGems is the Ruby standard for publishing and managing third party libraries.
For user documentation, see:
-
gem helpandgem help [command]
For gem developer documentation see:
-
Gem::Versionfor version dependency notes
Further RubyGems documentation can be found at:
-
RubyGems API (also available from
gem server)
RubyGems Plugins
RubyGems will load plugins in the latest version of each installed gem or $LOAD_PATH. Plugins must be named ‘rubygems_plugin’ (.rb, .so, etc) and placed at the root of your gem’s #require_path. Plugins are installed at a special location and loaded on boot.
For an example plugin, see the Graph gem which adds a gem graph command.
RubyGems Defaults, Packaging
RubyGems defaults are stored in lib/rubygems/defaults.rb. If you’re packaging RubyGems or implementing Ruby you can change RubyGems’ defaults.
For RubyGems packagers, provide lib/rubygems/defaults/operating_system.rb and override any defaults from lib/rubygems/defaults.rb.
For Ruby implementers, provide lib/rubygems/defaults/#{RUBY_ENGINE}.rb and override any defaults from lib/rubygems/defaults.rb.
If you need RubyGems to perform extra work on install or uninstall, your defaults override file can set pre/post install and uninstall hooks. See Gem::pre_install, Gem::pre_uninstall, Gem::post_install, Gem::post_uninstall.
Bugs
You can submit bugs to the RubyGems bug tracker on GitHub
Credits
RubyGems is currently maintained by Eric Hodel.
RubyGems was originally developed at RubyConf 2003 by:
-
Rich Kilmer – rich(at)infoether.com
-
Chad Fowler – chad(at)chadfowler.com
-
David Black – dblack(at)wobblini.net
-
Paul Brannan – paul(at)atdesk.com
-
Jim Weirich – jim(at)weirichhouse.org
Contributors:
-
Gavin Sinclair – gsinclair(at)soyabean.com.au
-
George Marrows – george.marrows(at)ntlworld.com
-
Dick Davies – rasputnik(at)hellooperator.net
-
Mauricio Fernandez – batsman.geo(at)yahoo.com
-
Simon Strandgaard – neoneye(at)adslhome.dk
-
Dave Glasser – glasser(at)mit.edu
-
Paul Duncan – pabs(at)pablotron.org
-
Ville Aine – vaine(at)cs.helsinki.fi
-
Eric Hodel – drbrain(at)segment7.net
-
Daniel Berger – djberg96(at)gmail.com
-
Phil Hagelberg – technomancy(at)gmail.com
-
Ryan Davis – ryand-ruby(at)zenspider.com
-
Evan Phoenix – evan(at)fallingsnow.net
-
Steve Klabnik – steve(at)steveklabnik.com
(If your name is missing, PLEASE let us know!)
License
See LICENSE.txt for permissions.
Thanks!
-The RubyGems Team
Workaround for directly loading Gem::Version in some cases
Constants
- DEFAULT_HOST
- GEM_DEP_FILES
- KERNEL_WARN_IGNORES_INTERNAL_ENTRIES
-
When bugs.ruby-lang.org/issues/17259 is available, there is no need to override Kernel#warn
- LOADED_SPECS_MUTEX
- MARSHAL_SPEC_DIR
-
Location of
Marshalquick gemspecs on remote repositories - READ_BINARY_ERRORS
-
Exceptionclasses used in aGem.read_binaryrescuestatement - REPOSITORY_DEFAULT_GEM_SUBDIRECTORIES
-
Subdirectories in a gem repository for default gems
- REPOSITORY_SUBDIRECTORIES
-
Subdirectories in a gem repository
- RUBYGEMS_DIR
- UNTAINT
-
Taint support is deprecated in
Ruby2.7. This allows switching “.untaint” to “.tap(&Gem::UNTAINT)”, to avoid deprecation warnings inRuby2.7. - VERSION
- WIN_PATTERNS
- WRITE_BINARY_ERRORS
-
Exceptionclasses used inGem.write_binaryrescuestatement
Public Class Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 161
def self.activated_gem_paths: () -> Integer
The number of paths in the +$LOAD_PATH+ from activated gems. Used to prioritize -I and ENV['RUBYLIB'] entries during require.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 169
def self.add_to_load_path: (*String paths) -> Array[String]
Add a list of paths to the $LOAD_PATH at the proper place.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 179
def self.bin_path: (String name, String exec_name, ?Array[Requirement] requirements) -> String
Find the full path to the executable for gem name. If the exec_name is not given, an exception will be raised, otherwise the specified executable’s path is returned. requirements allows you to specify specific gem versions.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 187
def self.binary_mode: () -> String
The mode needed to read a file as straight binary.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 195
def self.bindir: (?String install_dir) -> String
The path where gem executables are to be installed.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 203
def self.cache_home: () -> String
The path to standard location of the user’s cache directory.
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 211
def self.clear_default_specs: () -> void
Clear default gem related variables. It is for test
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 221
def self.clear_paths: () -> void
Reset the dir and path values. The next time dir or path is requested, the values will be calculated from scratch. This is mainly used by the unit tests to provide test isolation.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 229
def self.config_file: () -> String
The path to standard location of the user’s .gemrc file.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 237
def self.config_home: () -> String
The path to standard location of the user’s configuration directory.
() → ConfigFile
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 245
def self.configuration: () -> ConfigFile
The standard configuration object for gems.
(ConfigFile config) → ConfigFile
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 254
def self.configuration=: (ConfigFile config) -> ConfigFile
Use the given configuration object (which implements the ConfigFile protocol) as the standard configuration object.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 262
def self.data_home: () -> String
The path to standard location of the user’s data directory.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 270
def self.default_bindir: () -> String
The default directory for binaries
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 278
def self.default_cert_path: () -> String
The default signing certificate chain path
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 287
def self.default_dir: () -> String
Default home directory path to be used if an alternate value is not specified in the environment
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 295
def self.default_exec_format: () -> String
Deduce Ruby’s –program-prefix and –program-suffix from its install name
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 307
def self.default_ext_dir_for: (String base_dir) -> String?
Returns binary extensions dir for specified RubyGems base dir or nil if such directory cannot be determined.
By default, the binary extensions are located side by side with their Ruby counterparts, therefore nil is returned
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 315
def self.default_key_path: () -> String
The default signing key path
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 323
def self.default_path: () -> Array[String]
Default gem load path
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 331
def self.default_rubygems_dirs: () -> Array[String]?
Paths where RubyGems’ .rb files and bin files are installed
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 339
def self.default_sources: () -> Array[String]
An Array of the default sources that come with RubyGems
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 348
def self.default_spec_cache_dir: () -> String
Default spec directory path to be used if an alternate value is not specified in the environment
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 356
def self.default_specifications_dir: () -> String
Path to specification files of default gems.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 364
def self.deflate: (String data) -> String
A Zlib::Deflate.deflate wrapper
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 372
def self.dir: () -> String
The path where gems are to be installed.
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 379
def self.disable_system_update_message: () -> String?
RubyGems distributors (like operating system package managers) can disable RubyGems update by setting this to error message printed to end-users on gem update –system instead of actual update.
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 386
def self.disable_system_update_message=: (String?) -> String?
RubyGems distributors (like operating system package managers) can disable RubyGems update by setting this to error message printed to end-users on gem update –system instead of actual update.
() { (DependencyInstaller, Array[Specification]) → untyped } → Array[Proc]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 396
def self.done_installing: () { (DependencyInstaller, Array[Specification]) -> untyped } -> Array[Proc]
Adds a post-installs hook that will be passed a Gem::DependencyInstaller and a list of installed specifications when Gem::DependencyInstaller#install is complete
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 402
def self.done_installing_hooks: () -> Array[Proc?]
The list of hooks to be run after Gem::DependencyInstaller installs a set of gems
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 416
def self.ensure_default_gem_subdirectories: (?String dir, ?Integer | String mode) -> Array[String]
Quietly ensure the Gem directory dir contains all the proper subdirectories for handling default gems. If we can’t create a directory due to a permission problem, then we will silently continue.
If mode is given, missing directories are created with this mode.
World-writable directories will never be created.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 430
def self.ensure_gem_subdirectories: (?String dir, ?Integer | String mode) -> Array[String]
Quietly ensure the Gem directory dir contains all the proper subdirectories. If we can’t create a directory due to a permission problem, then we will silently continue.
If mode is given, missing directories are created with this mode.
World-writable directories will never be created.
(String gem_name) → Requirement
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 437
def self.env_requirement: (String gem_name) -> Requirement
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 445
def self.find_config_file: () -> String
Finds the user’s config file
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 462
def self.find_files: (String glob, ?boolish check_load_path) -> Array[String]
Returns a list of paths matching glob that can be used by a gem to pick up features from other gems. For example:
Gem.find_files('rdoc/discover').each do |path| load path end
if check_load_path is true (the default), then find_files also searches $LOAD_PATH for files as well as gems.
Note that find_files will return all files even if they are from different versions of the same gem. See also find_latest_files
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 479
def self.find_latest_files: (String glob, ?boolish check_load_path) -> Array[String]
Returns a list of paths matching glob from the latest gems that can be used by a gem to pick up features from other gems. For example:
Gem.find_latest_files('rdoc/discover').each do |path| load path end
if check_load_path is true (the default), then find_latest_files also searches $LOAD_PATH for files as well as gems.
Unlike find_files, find_latest_files will return only files from the latest version of a gem.
(String path) → Specification?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 487
def self.find_unresolved_default_spec: (String path) -> Specification?
Find an unresolved Gem::Specification of default gem from path
(?RequestSet request_set) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 494
def self.finish_resolve: (?RequestSet request_set) -> void
() → RequestSet::GemDependencyAPI?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 500
def self.gemdeps: () -> RequestSet::GemDependencyAPI?
GemDependencyAPI object, which is set when .use_gemdeps is called. This contains all the information from the Gemfile.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 509
def self.host: () -> String
Get the default RubyGems API host. This is normally https://rubygems.org.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 517
def self.host=: (String host) -> String
Set the default RubyGems API host.
(String name, ?Gem::Requirement version, *DependencyInstaller::options options) → Array[Specification]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 530
def self.install: (String name, ?Gem::Requirement version, *DependencyInstaller::options options) -> Array[Specification]
Top level install helper method. Allows you to install gems interactively:
% irb >> Gem.install "minitest" Fetching: minitest-5.14.0.gem (100%) => [#<Gem::Specification:0x1013b4528 @name="minitest", ...>]
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 538
def self.java_platform?: () -> bool
Is this a java platform?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 546
def self.latest_rubygems_version: () -> Version
Returns the latest release version of RubyGems.
(String name) → Specification?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 554
def self.latest_spec_for: (String name) -> Specification?
Returns the latest release-version specification for the gem name.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 562
def self.latest_version_for: (String name) -> Version?
Returns the version of the latest release-version of gem name
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 570
def self.load_env_plugins: () -> Array[String]
Find all ‘rubygems_plugin’ files in $LOAD_PATH and load them
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 579
def self.load_path_insert_index: () -> Integer
The index to insert activated gem paths into the $LOAD_PATH. The activated gem’s paths are inserted before site lib directory by default.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 587
def self.load_plugins: () -> Array[String]
Find rubygems plugin files in the standard location and load them
() → bool?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 595
def self.load_yaml: () -> bool?
Loads YAML, preferring Psych
() → Hash[String, BasicSpecification]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 600
def self.loaded_specs: () -> Hash[String, BasicSpecification]
Hash of loaded Gem::Specification keyed by name
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 618
def self.location_of_caller: (?Integer depth) -> [ String, Integer ]
The file name and line number of the caller of the caller of this method.
depth is how many layers up the call stack it should go.
e.g.,
def a; Gem.location_of_caller; end a #=> [“x.rb”, 2] # (it’ll vary depending on file name and line number)
def b; c; end def c; Gem.location_of_caller(2); end b #=> [“x.rb”, 6] # (it’ll vary depending on file name and line number)
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 626
def self.marshal_version: () -> String
() { (RequestSet) → void } → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 633
def self.needs: () { (RequestSet) -> void } -> void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 654
def self.operating_system_defaults: () -> Hash[String, String]
Default options for gem commands for Ruby packagers.
The options here should be structured as an array of string “gem” command names as keys and a string of the default options as values.
Example:
def self.operating_system_defaults { ‘install’ => ‘–no-rdoc –no-ri –env-shebang’, ‘update’ => ‘–no-rdoc –no-ri –env-shebang’ }
end
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 661
def self.path: () -> Array[String]
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 669
def self.path_separator: () -> String
() → PathSupport
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 677
def self.paths: () -> PathSupport
Retrieve the PathSupport object that RubyGems uses to lookup files.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 688
def self.paths=: (_HashLike[String, String?] env) -> Array[String]
Initialize the filesystem paths to use from env. env is a hash-like object (typically ENV) that is queried for ‘GEM_HOME’, ‘GEM_PATH’, and ‘GEM_SPEC_CACHE’ Keys for the env hash should be Strings, and values of the hash should be Strings or nil.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 709
def self.platform_defaults: () -> Hash[String, String]
Default options for gem commands for Ruby implementers.
The options here should be structured as an array of string “gem” command names as keys and a string of the default options as values.
Example:
def self.platform_defaults { ‘install’ => ‘–no-rdoc –no-ri –env-shebang’, ‘update’ => ‘–no-rdoc –no-ri –env-shebang’ }
end
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 717
def self.platforms: () -> Array[String | Platform]
Array of platforms this RubyGems supports.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 725
def self.platforms=: (Array[String | Platform] platforms) -> Array[String | Platform]
Set array of platforms this RubyGems supports (primarily for testing).
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 733
def self.plugin_suffix_pattern: () -> String
Glob pattern for require-able plugin suffixes.
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 741
def self.plugin_suffix_regexp: () -> Regexp
Regexp for require-able plugin suffixes.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 749
def self.plugindir: (?String install_dir) -> String
The path were rubygems plugins are to be installed.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 761
def self.post_build: () { (Installer) -> untyped } -> Array[Proc]
Adds a post-build hook that will be passed an Gem::Installer instance when Gem::Installer#install is called. The hook is called after the gem has been extracted and extensions have been built but before the executables or gemspec has been written. If the hook returns false then the gem’s files will be removed and the install will be aborted.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 767
def self.post_build_hooks: () -> Array[Proc]
The list of hooks to be run after Gem::Installer#install extracts files and builds extensions
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 776
def self.post_install: () { (Installer) -> untyped } -> Array[Proc]
Adds a post-install hook that will be passed an Gem::Installer instance when Gem::Installer#install is called
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 782
def self.post_install_hooks: () -> Array[Proc]
The list of hooks to be run after Gem::Installer#install completes installation
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 790
def self.post_reset: () { () -> untyped } -> Array[Proc]
Adds a hook that will get run after Gem::Specification.reset is run.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 795
def self.post_reset_hooks: () -> Array[Proc?]
The list of hooks to be run after Gem::Specification.reset is run.
() { (Uninstaller) → untyped } → Array[Proc]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 804
def self.post_uninstall: () { (Uninstaller) -> untyped } -> Array[Proc]
Adds a post-uninstall hook that will be passed a Gem::Uninstaller instance and the spec that was uninstalled when Gem::Uninstaller#uninstall is called
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 810
def self.post_uninstall_hooks: () -> Array[Proc?]
The list of hooks to be run after Gem::Uninstaller#uninstall completes installation
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 820
def self.pre_install: () { (Installer) -> untyped } -> Array[Proc]
Adds a pre-install hook that will be passed an Gem::Installer instance when Gem::Installer#install is called. If the hook returns false then the install will be aborted.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 825
def self.pre_install_hooks: () -> Array[Proc?]
The list of hooks to be run before Gem::Installer#install does any work
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 833
def self.pre_reset: () { () -> untyped } -> Array[Proc]
Adds a hook that will get run before Gem::Specification.reset is run.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 838
def self.pre_reset_hooks: () -> Array[Proc?]
The list of hooks to be run before Gem::Specification.reset is run.
() { (Uninstaller) → untyped } → Array[Proc]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 847
def self.pre_uninstall: () { (Uninstaller) -> untyped } -> Array[Proc]
Adds a pre-uninstall hook that will be passed an Gem::Uninstaller instance and the spec that will be uninstalled when Gem::Uninstaller#uninstall is called
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 852
def self.pre_uninstall_hooks: () -> Array[Proc?]
The list of hooks to be run before Gem::Uninstaller#uninstall does any work
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 862
def self.prefix: () -> String?
The directory prefix this RubyGems was installed at. If your prefix is in a standard location (ie, rubygems is installed where you’d expect it to be), then prefix returns nil.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 870
def self.read_binary: (String path) -> String
Safely read a file in binary mode on all platforms.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 878
def self.refresh: () -> Array[Proc]
Refresh available gems from disk.
(Specification spec) → Array[String]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 894
def self.register_default_spec: (Specification spec) -> Array[String]
Register a Gem::Specification for default gem.
Two formats for the specification are supported:
-
MRI 2.0 style, where spec.files contains unprefixed require names. The spec’s filenames will be registered as-is.
-
New style, where spec.files contains files prefixed with paths from spec.require_paths. The prefixes are stripped before registering the spec’s filenames. Unprefixed files are omitted.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 902
def self.ruby: () -> String
The path to the running Ruby interpreter.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 910
def self.ruby_api_version: () -> String
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 917
def self.ruby_engine: () -> String
() → Version
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 925
def self.ruby_version: () -> Version
A Gem::Version for the currently running Ruby.
() → Version
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 933
def self.rubygems_version: () -> Version
A Gem::Version for the currently running RubyGems
() → Time
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 943
def self.source_date_epoch: () -> Time
Returns the value of Gem.source_date_epoch_string, as a Time object.
This is used throughout RubyGems for enabling reproducible builds.
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 964
def self.source_date_epoch_string: () -> String
If the SOURCE_DATE_EPOCH environment variable is set, returns it’s value. Otherwise, returns DEFAULT_SOURCE_DATE_EPOCH as a string.
NOTE(@duckinator): The implementation is a tad weird because we want to: 1. Make builds reproducible by default, by having this function always return the same result during a given run. 2. Allow changing ENV at runtime, since multiple tests that set this variable will be run in a single process.
If you simplify this function and a lot of tests fail, that is likely due to
#2 above.
Details on SOURCE_DATE_EPOCH: reproducible-builds.org/specs/source-date-epoch/
() → SourceList
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 973
def self.sources: () -> SourceList
Returns an Array of sources to fetch remote gems from. Uses default_sources if the sources list is empty.
(SourceList? new_sources) → SourceList?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 985
def self.sources=: (SourceList? new_sources) -> SourceList?
Need to be able to set the sources without calling Gem.sources.replace since that would cause an infinite loop.
DOC: This comment is not documentation about the method itself, it’s more of a code comment about the implementation.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 992
def self.spec_cache_dir: () -> String
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1000
def self.suffix_pattern: () -> String
Glob pattern for require-able path suffixes.
() → Regexp
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1008
def self.suffix_regexp: () -> Regexp
Regexp for require-able path suffixes.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1016
def self.suffixes: () -> Array[String]
Suffixes for require-able paths.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1025
def self.time: [T] (String msg, ?Integer width, ?boolish display) { () -> T } -> T
Prints the amount of time the supplied block takes to run using the debug UI output.
(String path) → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1035
def self.try_activate: (String path) -> bool
Try to activate a gem containing path. Returns true if activation succeeded or wasn’t needed because it was already activated. Returns false if it can’t find the path in a gem.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1043
def self.ui: () -> StreamUI
Lazily loads DefaultUserInteraction and returns the default UI.
(?String path) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1066
def self.use_gemdeps: (?String path) -> void
Looks for a gem dependency file at path and activates the gems in the file if found. If the file is not found an ArgumentError is raised.
If path is not given the RUBYGEMS_GEMDEPS environment variable is used, but if no file is found no exception is raised.
If ‘-’ is given for path RubyGems searches up from the current working directory for gem dependency files (gem.deps.rb, Gemfile, Isolate) and activates the gems in the first one found.
You can run this automatically when rubygems starts. To enable, set the RUBYGEMS_GEMDEPS environment variable to either the path of your gem dependencies file or “-” to auto-discover in parent directories.
NOTE: Enabling automatic discovery on multiuser systems can lead to execution of arbitrary code when used from directories outside your control.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1075
def self.use_paths: (String home, *String paths) -> Hash[String, String]
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1083
def self.user_dir: () -> String
Path for gems in the user’s home directory
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1091
def self.user_home: () -> String
The home directory for the user.
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.1.3/core/rubygems/rubygems.rbs, line 1099
def self.win_platform?: () -> bool
Is this a windows platform?