pyenv/bin/ruby-local-exec

24 lines
718 B
Text
Raw Normal View History

2011-08-17 22:35:23 +00:00
#!/usr/bin/env bash
#
# `ruby-local-exec` is a drop-in replacement for the standard Ruby
# shebang line:
#
# #!/usr/bin/env ruby-local-exec
#
# Use it for scripts inside a project with an `.rbenv-version`
# file. When you run the scripts, they'll use the project-specified
# Ruby version, regardless of what directory they're run from. Useful
# for e.g. running project tasks in cron scripts without needing to
# `cd` into the project first.
set -e
export RBENV_DIR="${1%/*}"
2013-01-04 16:12:29 +00:00
[ -n "$RBENV_SILENCE_WARNINGS" ] || {
echo "rbenv: \`ruby-local-exec' is deprecated and will be removed in the next release."
2015-12-07 19:03:07 +00:00
echo " To upgrade: https://github.com/rbenv/rbenv/wiki/ruby-local-exec"
2013-01-04 16:12:29 +00:00
echo
} >&2
2011-08-17 22:35:23 +00:00
exec ruby "$@"