Frage

I am using the following hashbang command with my RVM installation. How do I pass the -w argument to the ruby interpreter?

#!/usr/bin/env ruby

Thanks.

War es hilfreich?

Lösung

I recommend setting the RUBYOPT environment variable. In this manner, you don't have to edit your executables.

RUBYOPT="-w $RUBYOPT"

Andere Tipps

According to this reference you can use a separate declaration outside of the shebang for that:

#! /usr/bin/env ruby
$VERBOSE=true
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top