We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The binaries provided from packages installed with ruby_install_gems are not available in the users shell.
ruby_install_gems
vagrant@drupalvm-project:~$ gem list -d | grep 'compass ' -A 4 compass (1.0.3) Authors: Chris Eppstein, Scott Davis, Eric M. Suzanne, Brandon Mathis, Nico Hagenburger Homepage: http://compass-style.org Installed at: /home/vagrant/.gem/ruby/1.9.1 vagrant@drupalvm-project:~$ echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/vagrant/.composer/vendor/bin
According the ruby FAQ the path needs to be added to ~/.bashrc
~/.bashrc
if which ruby >/dev/null && which gem >/dev/null; then PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH" fi
The text was updated successfully, but these errors were encountered:
Fixes geerlingguy#33: Add user installed gems bin directoyr to PATH
14da388
f7f9fa4
Merge pull request #34 from oxyc/issue-33
cf918f8
Fixes #33: Add user installed gems bin directoyr to PATH
No branches or pull requests
The binaries provided from packages installed with
ruby_install_gems
are not available in the users shell.According the ruby FAQ the path needs to be added to
~/.bashrc
The text was updated successfully, but these errors were encountered: