Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 3.144.26.47
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : rvmrc
#!/usr/bin/env bash

source "${rvm_scripts_path}/functions/rvmrc_env"
source "${rvm_scripts_path}/functions/rvmrc_project"
source "${rvm_scripts_path}/functions/rvmrc_set"
source "${rvm_scripts_path}/functions/rvmrc_to"
source "${rvm_scripts_path}/functions/rvmrc_trust"
source "${rvm_scripts_path}/functions/rvmrc_warning"

__rvm_rvmrc_match_all() [[ "${1:-}" == "all" || "${1:-}" == "all.rvmrcs" || "${1:-}" == "allGemfiles" ]]

__rvm_rvmrc_tools()
{
  \typeset rvmrc_action rvmrc_warning_action rvmrc_path saveIFS trust rvmrc_ruby

  rvmrc_action="$1"
  (( $# )) && shift || true

  if
    [[ "${rvmrc_action}" == "warning" ]]
  then
    rvmrc_warning_action="${1:-}"
    (( $# )) && shift || true
  fi

  if
    [[ "${rvmrc_action}" == "create" ]]
  then
    rvmrc_ruby="${1:-${GEM_HOME##*/}}"
    rvmrc_path="$(__rvm_cd "$PWD" >/dev/null 2>&1; pwd)/${2:-.rvmrc}"
  elif
    [[ "$1" == ".rvmrc" ]]
  then
    rvmrc_path="$PWD/.rvmrc"
  elif
    [[ "${rvmrc_action}" == "to" || "${rvmrc_action}" == "warning" ]] ||
    [[ -n "${1:-}" ]]
  then
    rvmrc_path="$1"
  else
    rvmrc_path="$PWD/.rvmrc"
  fi

  if
    [[ "${rvmrc_action}" == "to" ||
       "${rvmrc_action}" == "warning" ||
       "${rvmrc_action}" == "create"
    ]]||
    __rvm_rvmrc_match_all "${rvmrc_path:-}" # ignore all*
  then
    true 
  else
    __rvm_project_dir_check "${rvmrc_path}" rvmrc_path "${rvmrc_path}/.rvmrc"
  fi
  rvmrc_path="${rvmrc_path//\/\///}"
  rvmrc_path="${rvmrc_path%/}"

  case "$rvmrc_action" in
    warning)
      __rvmrc_warning "${rvmrc_warning_action:-}" "$rvmrc_path" || return $?
      ;;

    to)
      __rvm_rvmrc_to "$rvmrc_path" || return $?
      ;;

    create)
      (
        rvm_create_flag=1 __rvm_use "${rvmrc_ruby}"
        case "${rvmrc_path}" in
          (*/.rvmrc|*/--rvmrc)                 __rvm_set_rvmrc         ;;
          (*/.ruby-version|*/--ruby-version)   __rvm_set_ruby_version  ;;
          (*/.versions.conf|*/--versions-conf) __rvm_set_versions_conf ;;
          (*)
            rvm_error "Unrecognized project file format."
            return 1
            ;;
        esac
      )
      ;;
    reset)
      __rvm_reset_rvmrc_trust "$rvmrc_path" &&
        rvm_log "Reset trust for $rvmrc_path" ||
        rvm_error "Reset trust for $rvmrc_path - failed"
      ;;
    trust)
      __rvm_trust_rvmrc "$rvmrc_path" &&
        rvm_log "Marked $rvmrc_path as trusted" ||
        rvm_error "Marked $rvmrc_path as trusted - failed"
      ;;

    untrust)
      __rvm_untrust_rvmrc "$rvmrc_path" &&
        rvm_log "Marked $rvmrc_path as untrusted" ||
        rvm_error "Marked $rvmrc_path as untrusted - failed"
      ;;

    trusted)
      __rvm_rvmrc_stored_trust_check "$rvmrc_path" || return $?
      ;;

    is_trusted)
      __rvm_rvmrc_stored_trust_check "$rvmrc_path" >/dev/null
      ;;

    load)
      rvm_current_rvmrc="" rvm_trust_rvmrcs_flag=1 __rvm_project_rvmrc "${rvmrc_path%/.rvmrc}"
      ;;

    try_to_read_ruby)
      __rvm_rvmrc_tools_try_to_read_ruby "$@" || return $?
      ;;

    *)
      rvm_error "Usage: rvm rvmrc {trust,untrust,trusted,load,reset,is_trusted,try_to_read_ruby,create}"
      return 1
      ;;
  esac

  return $?
}

__rvm_rvmrc_tools_try_to_read_ruby()
{
  case "$rvmrc_path" in
    (*/.rvmrc)
      # make sure the flag is passed on to sub-process () / $()
      if [[ -n "${rvm_trust_rvmrcs_flag:-}" ]]
      then export rvm_trust_rvmrcs_flag
      fi

      rvmrc_path="$(cd "$(dirname "$rvmrc_path")"; pwd)/.rvmrc"

      __rvm_rvmrc_tools is_trusted "$(dirname "$rvmrc_path")" .rvmrc ||
      (
        # subprocess to not mess with current process variables
        rvm_promptless=1 __rvm_project_rvmrc "$rvmrc_path" >/dev/null 2>&1
      )

      if __rvm_rvmrc_tools is_trusted "$(dirname "$rvmrc_path")" .rvmrc
      then __rvm_rvmrc_tools_read_ruby "$@" || return $?
      else return 1
      fi
      ;;
    (*)
      __rvm_rvmrc_tools_read_ruby "$@" || return $?
      ;;
  esac
}

__rvm_save_variables()
{
  \typeset __save_to __key
  __save_to="$1"
  shift
  for __key in "$@"
  do
    eval "${__save_to}+=( \"\${__key}=\${${__key}}\" )"
  done
}

__rvm_rvmrc_tools_read_ruby()
{
  \typeset __result
  \typeset -a rvmrc_tools_read_ruby
  rvmrc_tools_read_ruby=()
  __rvm_save_variables rvmrc_tools_read_ruby \
    rvm_current_rvmrc result current_result rvm_token next_token \
    rvm_action _string
  rvm_current_rvmrc=""

  rvm_action="${rvm_action:-use}" rvm_trust_rvmrcs_flag=1 __rvm_project_rvmrc "$rvmrc_path" >/dev/null &&
    rvm_ruby_string="${GEM_HOME##*/}" &&
    rvm_ruby_strings="$rvm_ruby_string" ||
    __result=101

  __rvm_set_env "" "${rvmrc_tools_read_ruby[@]}"
  return ${__result:-0}
}
© 2025 GrazzMean