show/hide this revision's text 3 added 4 characters in body

Cannot be done. Child processes cannot modify their parents environment (including the current working directory of the parent). The . (also known as source) trick only works with shell scripts because you are telling the shell to run that code in the current process (rather than spawning a subprocess to run it). Just for fun try putting exit in a file you run this way (spoiler: you will get logged out).

If you wish to have the illusion of this working you need to create shell functions that call your Ruby script and have the shell function do the actual cd. Since the functions run in the current process, they can change the directory. For instance, given this ruby script (named temp.rb):

#!/usr/bin/ruby

print "/tmp";

You could write this BASH function (in, say, you ~/.profile):

function gotmp {
    cd $(./temp.rb)
(~/bin/temp.rb)
}

And then you could say gotmp at the commandline and have the directory be changed.

show/hide this revision's text 2 added 314 characters in body; added 317 characters in body

Cannot be done. Child processes cannot modify their parents environment (including the current working directory of the parent). The . (also known as source) trick only works with shell scripts because you are telling the shell to run that code in the current process (rather than spawning a subprocess to run it). Just for fun try putting exit in a file you run this way (spoiler: you will get logged out).

If you wish to have the illusion of this working you need to create shell functions that call your Ruby script and have the shell function do the chdiractual cd. Since the functions run in the current process, they can change the directory. For instance, given this ruby script (named temp.rb):

#!/usr/bin/ruby

print "/tmp";

You could write this BASH function (in, say, you ~/.profile):

function gotmp {
    cd $(./temp.rb)
}

And then you could say gotmp at the commandline and have the directory be changed.

show/hide this revision's text 1

Cannot be done. Child processes cannot modify their parents environment (including the current working directory of the parent).

If you wish to have the illusion of this working you need to create shell functions that call your Ruby script and do the chdir. Since the functions run in the current process, they can change the directory.