looking for some recommendations on best practices here.
I've been tinkering with a small CGI script. I have RVM installed via Homebrew on my Macbook Air.
I was using the old #! /usr/bin/env ruby
trick in my script, which worked fine on my local development environment because I configured all the PATH
s to use RVM ruby.
However, when I deploy on the production web host (Bluehost), I must use their ruby located in the standard location at /usr/bin/ruby
.
How should I set up my development environment so that I can maintain the same shebang link between development and production? I thought of symlinking /usr/bin/ruby
on my local development machine to RVM, and then using the #! /usr/bin/ruby
in all my scripts, but that seems like a dirty hack which would not be easily maintained as I swap between different rubies.
Has anyone else run into this problem? If so, was there a graceful way to manage it? Thx.