#!/usr/bin/env bash # Summary: Show where the current Ruby version is set from set -e [ -n "$RBENV_DEBUG" ] && set -x if [ -n "$RBENV_VERSION" ]; then echo "RBENV_VERSION environment variable" else rbenv-version-file fi