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
gemrage-0.1.2 vendor/ruby/1.8/gems/rvm-1.0.14/scripts/initialize
rvm-1.0.14 scripts/initialize
rvm-1.0.13 scripts/initialize
rvm-1.0.11 scripts/initialize
rvm-1.0.10 scripts/initialize
rvm-1.0.9 scripts/initialize
rvm-1.0.8 scripts/initialize