9 examples for gem
1 2 3 4 | # Print out gem's internal environment variables, # which tells you things like where gems are # being installed: gem env |
1 2 3 4 5 6 7 8 | # Install a gem (for instance example "bropages") locally in your user directory gem install --user- install bropages # You may need to install the ruby development environment beforehand. # In Ubuntu, as of 31/08/2016: `sudo apt-get install ruby-dev` # # After a first `gem install --user-install`, pay attention to the message # telling you to add the local gem bin directory to you PATH. |