class GemHadar::RvmConfig

end
end
gemset ‘my_gem_dev’
use ‘3.0.0’
rvm do
GemHadar do
@example Configuring RVM settings
configuration.
to define and access these settings within the context of a GemHadar
the Ruby version to use and the gemset name. It provides a structured way
This class is responsible for managing RVM-specific configuration such as
for a gem project.
A class that encapsulates Ruby Version Manager (RVM) configuration settings

def initialize(&block)

Returns:
  • (GemHadar::RvmConfig) - the initialized RvmConfig instance

Parameters:
  • block (Proc) -- the block to be evaluated for configuring the RVM settings
def initialize(&block)
  @outer_scope = block_self(&block)
  instance_eval(&block)
end