mirror of https://github.com/jenv/jenv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
719 B
23 lines
719 B
#!/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 `.jenv-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 JENV_DIR="${1%/*}" |
|
|
|
[ -n "$JENV_SILENCE_WARNINGS" ] || { |
|
echo "jenv: \`ruby-local-exec' is deprecated and will be removed in the next release." |
|
echo " To upgrade: https://github.com/sstephenson/jenv/wiki/ruby-local-exec" |
|
echo |
|
} >&2 |
|
|
|
exec ruby "$@"
|
|
|