RUBYOPT: Where is it (env) defined?

F

Frederick Lee

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.
 
M

Marc Heiler

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
 
F

Frederick Lee

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?
 
M

matt neuburg

Frederick Lee said:
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?

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.
 
F

Frederick Lee

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top