I am working on developing multiple interdependent gems. Usually I use this method for using a local version of Gem B
, which Gem A
depends on. When I was working on some changes that also changed part of Gem C
which is a Gem B
dependency I got the following error when trying to run Gem A
:
'require': cannot load such file -- Gem C
Gem B
has that local version required.
How can I get around this error?