module RVM::Shell
Provides Generic access to a more ruby-like shell interface. For more details, see AbstractWrapper.
Public Class Methods
default_wrapper()
click to toggle source
Returns the default shell wrapper class to use
# File lib/rvm/shell.rb, line 17 def self.default_wrapper @@default_wrapper ||= SingleShotWrapper end
default_wrapper=(wrapper)
click to toggle source
Sets the default shell wrapper class to use.
# File lib/rvm/shell.rb, line 22 def self.default_wrapper=(wrapper) @@default_wrapper = wrapper end