Sha256: 69fee105e873138e9ece83bd4ac22591f41dbfd507894ec9671ddc8a9b15bd71

Contents?: true

Size: 961 Bytes

Versions: 27

Compression:

Stored size: 961 Bytes

Contents

#!/usr/bin/env bash

# Ensure that the extended globs feature is turned on.
if [[ -n "${ZSH_VERSION:-""}" ]] ; then
  setopt extendedglob
else
  if [[ -n "${BASH_VERSION:-""}" ]] ; then
    shopt -s extglob # Extended globs
  else
    printf "%s\n" "What the heck kind of shell are you running here???"
  fi
fi

if [[ ${rvm_selfcontained:-1} -eq 0 ]] ; then
  rvm_bin_path="${rvm_bin_path:-"${rvm_prefix}bin"}"
  rvm_man_path="${rvm_man_path:-"${rvm_prefix}share/man"}"
  rvm_rc_files="${rvm_rc_files:-"/etc/profile /etc/zshenv"}"
else
  rvm_bin_path="${rvm_bin_path:-"$rvm_path/bin"}"
  rvm_man_path="${rvm_man_path:-"$rvm_path/man"}"
  rvm_rc_files="${rvm_rc_files:-"$HOME/.bash_profile $HOME/.bashrc $HOME/.zshenv"}"
fi

[[ -n "${rvm_archflags:-""}" ]] && rvm_make_flags_flag=1

rvm_gems_cache_path="${rvm_gems_cache_path:-"${rvm_gems_path:-"$rvm_path/gems"}/cache"}"

export rvm_path rvm_bin_path rvm_gems_cache_path rvm_gemset_separator rvm_selfcontained

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
rvm-1.1.4 scripts/initialize
rvm-1.1.3 scripts/initialize
rvm-1.1.2 scripts/initialize
rvm-1.1.1 scripts/initialize
rvm-1.1.0 scripts/initialize
rvm-1.0.23 scripts/initialize
rvm-1.0.22 scripts/initialize
rvm-1.0.21 scripts/initialize
rvm-1.0.20 scripts/initialize
rvm-1.0.19 scripts/initialize
rvm-1.0.18 scripts/initialize
rvm-1.0.17 scripts/initialize
rvm-1.0.15 scripts/initialize
gemrage-1.0.0 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.4.1 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.4.0 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.3.2 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.3.1 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.3.0 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
gemrage-0.2.0 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize