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
Hi there,
I'm using your libary to create triangle patterns and I've noticed that there seems to be an Issue with Ruby 2.7.
When I run bin/console in ruby 2.7 I'm getting the following error:
bin/console
Traceback (most recent call last): 5: from bin/console:4:in `<main>' 4: from bin/console:4:in `require' 3: from /home/wolle/projekte/gradient/lib/gradient.rb:8:in `<top (required)>' 2: from /home/wolle/projekte/gradient/lib/gradient.rb:8:in `require' 1: from /home/wolle/projekte/gradient/lib/gradient/svg.rb:1:in `<top (required)>' /home/wolle/projekte/gradient/lib/gradient/svg.rb:1:in `require': cannot load such file -- scanf (LoadError)
scanf cannot be loaded because it was excluded as a standard libary as of version 2.7 https://rubyreferences.github.io/rubychanges/2.7.html#libraries-excluded-from-the-standard-library
scanf
Solution:
Include scanf in your gemspec
The text was updated successfully, but these errors were encountered:
fix(Compatibility): add missing scanf libary
150c369
* Libary is necessary to ensure Ruby 2.7.0 Compatibility * see zeevallin/gradient#7
No branches or pull requests
Hi there,
I'm using your libary to create triangle patterns and I've noticed that there seems to be an Issue with Ruby 2.7.
When I run
bin/console
in ruby 2.7 I'm getting the following error:scanf
cannot be loaded because it was excluded as a standard libary as of version 2.7 https://rubyreferences.github.io/rubychanges/2.7.html#libraries-excluded-from-the-standard-librarySolution:
Include scanf in your gemspec
The text was updated successfully, but these errors were encountered: