mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
15 lines
407 B
Markdown
15 lines
407 B
Markdown
# 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).
|