Module RVM::Shell
In: lib/rvm/shell.rb
lib/rvm/shell/single_shot_wrapper.rb
lib/rvm/shell/abstract_wrapper.rb
lib/rvm/shell/utility.rb
lib/rvm/shell/result.rb

Provides Generic access to a more ruby-like shell interface. For more details, see AbstractWrapper.

Methods

Classes and Modules

Module RVM::Shell::Utility
Class RVM::Shell::AbstractWrapper
Class RVM::Shell::Result
Class RVM::Shell::SingleShotWrapper

Public Class methods

Returns the default shell wrapper class to use

[Source]

# File lib/rvm/shell.rb, line 15
    def self.default_wrapper
      @@default_wrapper ||= SingleShotWrapper
    end

Sets the default shell wrapper class to use.

[Source]

# File lib/rvm/shell.rb, line 20
    def self.default_wrapper=(wrapper)
      @@default_wrapper = wrapper
    end

[Validate]