Setting Environmental Variables in Ruby script

I have a scipt that executes a shell command that requires my
environment to be set so the script fails. Is there a way to add my
profile settings into my ruby script?

Thanks

jack

···

--
Posted via http://www.ruby-forum.com/.

jackster the jackle wrote:

I have a scipt that executes a shell command that requires my
environment to be set so the script fails. Is there a way to add my
profile settings into my ruby script?

ENV["varname"] = "value"

HTH,
Sebastian

···

--
Jabber: sepp2k@jabber.org
ICQ: 205544826

cfp:~ > cat this-is-a-bash-question.sh
#! /bin/bash --login

echo $FOO

cfp:~ > ./this-is-a-bash-question.sh

(nothing)

cfp:~ > grep FOO .bash_profile

(nothing)

cfp:~ > echo 'export FOO=42' >> .bash_profile

cfp:~ > ./this-is-a-bash-question.sh
42

a @ http://codeforpeople.com/

···

On Oct 15, 2008, at 11:06 AM, jackster the jackle wrote:

I have a scipt that executes a shell command that requires my
environment to be set so the script fails. Is there a way to add my
profile settings into my ruby script?

Thanks

jack
-- Posted via http://www.ruby-forum.com/\.

--
we can deny everything, except that we have the possibility of being better. simply reflect on that.
h.h. the 14th dalai lama

Sebastian Hungerecker wrote:

jackster the jackle wrote:

I have a scipt that executes a shell command that requires my
environment to be set so the script fails. Is there a way to add my
profile settings into my ruby script?

ENV["varname"] = "value"

HTH,
Sebastian

Thanks Sebastian...my ruby script takes all the variables without error
but my script still fails so I must be missing something in my
environment still. I'll have to do some more checking....thanks again

jack

···

--
Posted via http://www.ruby-forum.com/\.