require': cannot load such file -- dl/import (LoadError)
Using the latest beta fixes this issue.
gem install net-ssh -v 2.10.0.beta2
To do this I have to change the Gemfile to spec.add_runtime_dependency 'net-ssh', '~> 2.10.0.beta2'
If I'm correct, we can
a) generally fix the dependency to 2.10.0.beta2 for now until they update to a new major version and remove the issue
b) include a more detailed description for the fix
Yes, this change must be made in the gemspec file. Both, a) and b) would be ok.
I tend to include a more detailed description of the fix as the dependency update is also likely to be forgotten.
To do this I have to change the Gemfile to
spec.add_runtime_dependency 'net-ssh', '~> 2.10.0.beta2'
If I'm correct, we can a) generally fix the dependency to
2.10.0.beta2
for now until they update to a new major version and remove the issue b) include a more detailed description for the fixWhat do you think?