Sha256: b2a876a5e175fa827949a08472f36f8d6411bf6e6e380e5736c36390a70f5940

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

#!/usr/bin/env bash
rvm_base_except="selector"
source "$rvm_scripts_path/base"

rvm_help_path="${rvm_help_path:-"$rvm_path/help"}"

args=($*)
command="${args[0]}"
action="${args[1]}"
args="$(echo ${args[@]:2}) " # Strip trailing / leading / extra spacing.

if [[ ! -z "$command" ]] && [[ -s "${rvm_help_path}/${command}" ]] ; then
  if [[ ! -z "$action" ]] && [[ -s "${rvm_help_path}/${command}/${action}" ]] ; then
    "${PAGER:-less}" "${rvm_help_path}/${command}/${action}"
  else
    "${PAGER:-less}" "${rvm_help_path}/${command}"
  fi
else
  "${PAGER:-less}" "${rvm_path:-$HOME/.rvm}/README"
  "$rvm_scripts_path/log" "info" "Commands available with 'rvm help':\n\n    $(builtin cd "${rvm_help_path}" ; \ls | \tr "\n" ' ')"
fi

"$rvm_scripts_path/log" "info" "For additional information please visit RVM's documentation website:\n\n    http://rvm.beginrescueend.com/"
"$rvm_scripts_path/log" "info" "If you still cannot find what an answer to your question, find me 'wayneeseguin' in #rvm on irc.freenode.net:\n\n    http://webchat.freenode.net/?channels=rvm\n"

exit $?

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rvm-1.0.5 scripts/help
rvm-1.0.4 scripts/help
rvm-1.0.3 scripts/help