Two gems share same require?
问题 When I call: require 'retryable' These two gems clash: https://github.com/robertsosinski/retryable https://github.com/carlo/retryable as they both have a 'retryable' file they ask the user to require. I'm interested in using the first gem, however this doesn't always happen. This code is executed as a part of my own gem, and it has to be reliable across all users. Is there a way to require specifically from a gem (as the gem names are different of course)? How do I resolve this naming