mirror of
https://github.com/mistergibson/radio.git
synced 2026-09-08 22:09:51 -07:00
7 lines
356 B
Shell
Executable file
7 lines
356 B
Shell
Executable file
#!/usr/bin/env bash
|
|
# Launcher: sets GEM_HOME/GEM_PATH BEFORE jruby starts, so RubyGems picks
|
|
# them up natively at boot (in-process mutation is unreliable per JRuby #5269).
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
export GEM_HOME="${GEM_HOME:-$SCRIPT_DIR/.gems}"
|
|
export GEM_PATH="${GEM_PATH:-$SCRIPT_DIR/.gems}"
|
|
exec /usr/bin/jruby "$@"
|