I am trying to set an environmental variable inside the ruby code by below mentioned 3 methods. Like this:
one = `setenv HEMANT2 \"hi\"`
two = %x[ export HEMANT2=hi1]
there = system("setenv HEMANT \"hi\"")
And none of these 3 seems to be working. I am working on tcsh. Wondering what did I miss?