I'm very new to terminal, and UNIX command line stuff. I had Rails and Ruby set up nicely with the latest version, and created a new Rails project using the rails new command.
Then I decided to look like a hacker, and use the homegrown skin. After loading up a new window, my ruby -v generated 1.8.7, instead of 1.9.3. Rails is no longer a command.
Here is the PATH for the terminal window that has what I want:
PATH=/Users/felix/.rvm/gems/ruby-1.9.3-p0/bin:/Users/felix/.rvm/gems/ruby-1.9.3-p0@global/bin:/Users/felix/.rvm/rubies/ruby-1.9.3-p0/bin:/Users/felix/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:.
I tried looking at those files to see which ones has the path I want. But that lead down this dark and convoluted path that I probably never want to go down again. Are PATH vars supposed to be this long?
This is the PATH for the new terminal window:
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Users/felix/.rvm/bin
There are also many other differences when I run env, but I won't go into those details (unless they are required) because I feel like fixing the PATH var would fix the other missing vars as well.
So what can I do to remedy this problem? How do I make these variables stick. Also, is my PATH var comically long? Or is this standard.
~/.bash_profileexecuted. Are you changing the PATH in one window and then expecting that change to persist? You probably want to add it to your~/.bash_profilefile. – d11wtq Nov 17 '11 at 3:50rvm use 1.9.3to change the ruby version, and I usedgem install railsto install rails. Shouldn't those two option changes persist? – ferixhu Nov 17 '11 at 3:55rvm use --default 1.9.3(from memory... I switched to rbenv, it's a lot less kludgy). – d11wtq Nov 17 '11 at 5:35