I am using rbenv
and I am trying to install sass
without success.
So, I installed rbenv
via Homebrew, then Ruby 2.2 (rbenv install 2.2
) and finally gem install sass
, but I was unable to make sass
available on my $PATH
.
Short on time, I sudo gem install sass
using my system's (Yosemite) default Ruby 2. This put everything in /Library/Ruby/Gems/2.0.0
and things do work, but not in the most desireable way.
Ideally, using rbenv
I should be able to install any Ruby version and have gems installed inside that version's directory and later symlinked to /usrl/local/bin
.
Any help as to what could have gone wrong would be very much appreciated.