Search code examples
bashrubygemsbourbonneat

Neat framework not installing


I'm trying to install bourbon/neat in a non rails project.

I followed the simple instructions found here: https://github.com/thoughtbot/neat#installation

But as you can see Bash does not recognize the gem.

I tried restarting Terminal, but nothing new happened.

(I've already installed bourbon the exact same way and it worked OK)

MacBook-Pro-de-Andre-2:site abarro$ gem install neat -v 1.5.1
Fetching: sass-3.2.19.gem (100%)
Successfully installed sass-3.2.19
Fetching: neat-1.5.1.gem (100%)
Successfully installed neat-1.5.1
2 gems installed
MacBook-Pro-de-Andre-2:site abarro$ neat install
-bash: neat: command not found

Any ideas?

Thanks


Solution

  • The actual problem was with my RVM Installation.

    To fix it just add:

    [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session as a function
    

    to your ~/.bash_profile

    (I do not have the technical knowledge to post the reasons, sorry.)