1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-09 10:08:01 +00:00

Add Get Info About Your RubyGems Environment as a ruby til

This commit is contained in:
jbranchaud
2019-05-18 14:47:28 -05:00
parent 53c96e73e0
commit 4a113d98d9
2 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
# Get Info About Your Ruby Gems Environment
Want to know what Ruby version is being used? Or into what directory gems are
being installed?
```bash
$ gem environment
```
This command will answer those questions and give you a whole host of other
information about your RubyGems environment.
There are more details in their
[documentation](https://guides.rubygems.org/command-reference/#gem-environment).