We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
As pointed in this question at StackOverflow: http://stackoverflow.com/questions/5041709/krl-gem-and-msvcrt-ruby-dll
It seems kynetx_am_api dependency on JSON is too loose (>= 0)
>= 0
https://rubygems.org/gems/kynetx_am_api
This has proven to be problematic with any type of library, but worse in this case with JSON one due other errors.
Ideally you should declare your gem dependencies using ~> X.yZ to avoid untested gems be installed that could break end users installation.
~> X.yZ
You can read more about this here:
http://blog.zenspider.com/2008/10/rubygems-howto-preventing-cata.html
Thank you.
The text was updated successfully, but these errors were encountered:
Yes, you are right, this needs to be addressed. I'll take a look at it. Thanks!
Sorry, something went wrong.
No branches or pull requests
Hello,
As pointed in this question at StackOverflow:
http://stackoverflow.com/questions/5041709/krl-gem-and-msvcrt-ruby-dll
It seems kynetx_am_api dependency on JSON is too loose (
>= 0
)https://rubygems.org/gems/kynetx_am_api
This has proven to be problematic with any type of library, but worse in this case with JSON one due other errors.
Ideally you should declare your gem dependencies using
~> X.yZ
to avoid untested gems be installed that could break end users installation.You can read more about this here:
http://blog.zenspider.com/2008/10/rubygems-howto-preventing-cata.html
Thank you.
The text was updated successfully, but these errors were encountered: