Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have Rails '-v 3.2.11' installed on Ruby '-v 1.9.3-p374' via RVM on Ubuntu Precise. I also installed Yakuake app '-v 2.9.8-1' which gets a drop-down terminal for me. Normally, on Gnome terminal, I can run both Ruby and Rails commands. But on Yakuake, I can run Ruby but I can't run Rails commands. Here are commands from Yakuake:

➜  ~  ruby -v
ruby 1.9.3p374 (2013-01-15 revision 38858) [i686-linux]
➜  ~  rvm -v
rvm 1.18.5 (stable) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.io/]
➜  ~  rails -v
zsh: correct 'rails' to 'tail' [nyae]? n
zsh: command not found: rails

In addition to all that:

  • Both bash and zsh shells were tried, but same result is taken
  • On the related RVM site, Ruby and Rails commands should be run as login shell but Yakuake app has no option to run commands as login shell
  • I also tried Guake terminal, an alternative to Yakuake, it has login shell option, but not a good alternative app and not start at login -although being set as startup at login-.
share|improve this question
have you tried configuring login shell in kde konsole? – mpapis Feb 10 at 21:14
On kde konsole settings, there's no option to configure login shell. I made a mini-search and I saw that previous versions of konsole app has a main option called "Sessions" to setup login shell. But last stable version, it's removed. – ekremkrc Feb 10 at 22:24
ekremkrc, can you set what shell is used? – mpapis Feb 11 at 0:27
nope, I found anything about setting shell, probably I should go on Guake. I wish I could embed Gnome Terminal into Yakuake:( – ekremkrc Feb 12 at 13:08

1 Answer

up vote 1 down vote accepted

If you can not force your shell to use default ruby you either need to run default manually in every new shell:

rvm use default

Or add sourcing default into ~/.bashrc or ~/.zshenv:

export rvm_path="$HOME/.rvm"
if [[ -s "$rvm_path/environments/default" ]]
then source "$rvm_path/environments/default"
else PATH="$PATH:$rvm_path/bin"
fi
share|improve this answer
Yeah, I managed to get 'rails -v' output properly. Thanks for your valuable help:) – ekremkrc Feb 28 at 19:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.