Sha256: 7d57955bea21cd5bb04bdef56813382d884e9dcc6f5496baccc8071f4b30e734

Contents?: true

Size: 1.9 KB

Versions: 7

Compression:

Stored size: 1.9 KB

Contents

#!/usr/bin/env bash

rvm_selfcontained="${rvm_selfcontained:-1}"

if [[ "$rvm_selfcontained" = "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_man_path="${rvm_man_path:-"$rvm_path/man"}"
  rvm_bin_path="${rvm_bin_path:-"$rvm_path/bin"}"
  rvm_rc_files="${rvm_rc_files:-"$HOME/.bash_profile $HOME/.bashrc $HOME/.zshenv"}"
fi

[[ -n "$rvm_archflags" ]] && rvm_make_flags_flag=1

rvm_archives_path="${rvm_archives_path:-"$rvm_path/archives"}"
rvm_src_path="${rvm_src_path:-"$rvm_path/src"}"
rvm_repo_path="${rvm_repo_path:-"$rvm_path/repos"}"
rvm_log_path="${rvm_log_path:-"$rvm_path/log"}"
rvm_docs_path="${rvm_docs_path:-"$rvm_path/docs"}"
rvm_gems_path="${rvm_gems_path:-"$rvm_path/gems"}"
rvm_gemsets_path="${rvm_gemsets_path:-"$rvm_path/gemsets"}"
rvm_gems_cache_path="${rvm_gems_cache_path:-"$rvm_gems_path/cache"}"
rvm_rubies_path="${rvm_rubies_path:-"$rvm_path/rubies"}"
rvm_config_path="${rvm_config_path:-"$rvm_path/config"}"
rvm_environments_path="${rvm_environments_path:-"$rvm_path/environments"}"
rvm_wrappers_path="${rvm_wrappers_path:-"$rvm_path/wrappers"}"
rvm_hooks_path="${rvm_hooks_path:-"$rvm_path/hooks"}"
rvm_tmp_path="${rvm_tmp_path:-"$rvm_path/tmp"}"
rvm_usr_path="${rvm_usr_path:-"$rvm_path/usr"}"
rvm_patches_path="${rvm_patches_path:-"$rvm_path/patches"}"
rvm_patchsets_path="${rvm_patchsets_path:-"$rvm_path/patchsets"}"
rvm_gemset_separator="${rvm_gemset_separator:-"@"}"

rvm_project_rvmrc="${rvm_project_rvmrc:-1}"
rvm_project_rvmrc_default="${rvm_project_rvmrc_default:-0}"

export rvm_path rvm_patches_path rvm_rubies_path rvm_scripts_path rvm_archives_path rvm_src_path rvm_log_path rvm_bin_path rvm_gems_path rvm_config_path rvm_tmp_path rvm_hooks_path rvm_gems_cache_path rvm_gemset_separator rvm_gemsets_path rvm_repo_path rvm_patchsets_path rvm_selfcontained

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rvm-1.0.4 scripts/initialize
rvm-1.0.3 scripts/initialize
rvm-1.0.2 scripts/initialize
rvm-1.0.1 scripts/initialize
rvm-1.0.0 scripts/initialize
rvm-0.1.47 scripts/initialize
rvm-0.1.46 scripts/initialize