RUBYOPT: Where is it (env) defined?

I need to remove the RUBYOPT variable from the environment so I can
install MacRuby.

I’ve checked all my (local) environment (dot) files. I can’t find any
RUBYOPT env variable definition. In fact, it is global, since I can see
it in another user session within my MacBook Pro.

I’ve checked the /etc/profile but RUBYOPT isn’t defined there.

Question: Where would the global env RUBYOPT definition/assignment be?

…and is there an effective way to track down the source of global env
variables definitions/assignments?

Regards,

Ric.

Question: Where would the global env RUBYOPT definition/assignment be?

Isn’t it defined by the shell you use?

echo $RUBYOPT

If you can’t find it, on Linux systems, I always use grep -r

Frederick L. wrote:

I need to remove the RUBYOPT variable from the environment so I can
install MacRuby.

unset RUBYOPT

Yes, I can see it.

[/Users/Ric]echo $RUBYOPT
rubygems

I tried using grep to find RUBYOPT within my local startup files:

[/Users/Ric]grep “RUBYOPT” .*
.profile:export RUBYOPT=rubygems
.viminfo:~MSle0~/RUBYOPT
.viminfo:?/RUBYOPT

I missed the .profile file; so I commented out ‘RUBYOPT’:

Your previous .profile (if any) is saved as .profile.mpsaved

Setting the path for MacPorts.

export PATH=/opt/local/bin:/opt/local/sbin:$PATH

export RUBYOPT=rubygems

Still…

[/Users/Ric]echo $RUBYOPT
rubygems

… So it turns out that RUBYOPT was defined everywhere.
But via ‘grep’, it appears I plugged-up its definition within
the local scheme.

… Where else can I find (global) startup files to check?

Marc H. wrote:

Question: Where would the global env RUBYOPT definition/assignment be?

Isn’t it defined by the shell you use?

echo $RUBYOPT

If you can’t find it, on Linux systems, I always use grep -r

Frederick L. [email protected] wrote:

Setting the path for MacPorts.

the local scheme.

… Where else can I find (global) startup files to check?

Why not try doing what Marc said? Use grep -r. And start at “/”, the top
level. It will take a long time but at least you’ll find it. For maximum
scope you might need to run as the superuser. Anyway way this has long
ago ceased to have anything to do with Ruby. m.

I’ve been running ‘grep -r /’ for several hours.

I decided to try:
‘unsetenv RUBYOPT’ in my .login file.

Apparently it works!
I don’t see the RUBYOPT env listed.

Albeit I still can’t find the source of RUBYOPT, I managed
to REMOVE it via the follow-up local .login run.

BTW: I’m using tcsh vs bash.

Ric.

matt neuburg wrote:

Frederick L. [email protected] wrote:

Setting the path for MacPorts.

the local scheme.

… Where else can I find (global) startup files to check?

Why not try doing what Marc said? Use grep -r. And start at “/”, the top
level. It will take a long time but at least you’ll find it. For maximum
scope you might need to run as the superuser. Anyway way this has long
ago ceased to have anything to do with Ruby. m.