Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow overriding default-gems location #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions etc/rbenv.d/install/default-gems.bash
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ install_default_gems() {
# Only install default gems after successfully installing Ruby.
[ "$STATUS" = "0" ] || return 0

if [ -f "${RBENV_ROOT}/default-gems" ]; then
local default_gems
default_gems="${RBENV_DEFAULT_GEMS:-${RBENV_ROOT}/default-gems}"

if [ -f "${default_gems}" ]; then
local line gem_name gem_version args

# Read gem names and versions from $RBENV_ROOT/default-gems.
Expand Down Expand Up @@ -38,6 +41,6 @@ install_default_gems() {
echo "rbenv: error installing gem \`$gem_name'"
} >&2

done < "${RBENV_ROOT}/default-gems"
done < "${default_gems}"
fi
}