You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting LoadError: cannot load such file errors from the ci-queue ruby gem when trying to use it. It looks to me that the gem specifies several development_dependencies but uses them outside of development at runtime.
The fix on our end is to require this gems dependencies in our gemfile. The gem should properly specify its dependencies so installing it via bundler will grab everything it needs.
As for Redis it's a bit of the same. There are alternative queue implementation that don't use Redis. But I guess I would agree that 99% of users want the Redis queue so yeah we can add it to the gemspec.
Ahh I see the predicament, I guess #60 is needed for something like this then? In the meantime would it be reasonable to document the additional dependencies (depending on use case) in the README? I know it would have saved me some time if that documentation existed 😄.
We are getting
LoadError: cannot load such file
errors from theci-queue
ruby gem when trying to use it. It looks to me that the gem specifies severaldevelopment_dependencies
but uses them outside of development at runtime.The fix on our end is to require this gems dependencies in our
gemfile
. The gem should properly specify its dependencies so installing it viabundler
will grab everything it needs.Here are the errors I've encountered:
The text was updated successfully, but these errors were encountered: