How to require a user-installed gem in ruby when system-wide gem with higher version is also available? -
I have two versions of a gem: system-wide
1.3.2 , and user- Installed 1.0.0 . I just need to use the version 1.0.0 , which is set in the directory of my house. Do I like to install user-installed gems gem Is there a way to tell ?
before need You can specify which gem version you can use by using. gem 'foo', '1.0 0' expected 'foo'
Comments
Post a Comment