How to check which gemset rbenv is used?

I am using echo project-name > .rbenv-gemsets to create a new gemset for rbenv.

How can you verify that he is using this gemset?

gem list empty for the global gemset, so when I run it on the new gemset, it doesn't tell me anything.

+4
source share
1 answer

make a rbenv gemset active

If you configured rbenv and rbenv-gemset correctly, you will see the following output:

global project name

+4
source

Source: https://habr.com/ru/post/1493810/


All Articles