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
I bump the version of Rake to 13.2.0 and got a NameError at the above point.
Rake uses Struct instead of OpenStruct in version 13.2.0. ruby/rake#545
It seems that OpenStruct loading is implicitly dependent on Rake.
I suggest adding require 'ostruct' or using Struct instead of the deprecated OpenStruct.
require 'ostruct'
Struct
OpenStruct
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I bump the version of Rake to 13.2.0 and got a NameError at the above point.
Rake uses Struct instead of OpenStruct in version 13.2.0.
ruby/rake#545
It seems that OpenStruct loading is implicitly dependent on Rake.
I suggest adding
require 'ostruct'
or usingStruct
instead of the deprecatedOpenStruct
.The text was updated successfully, but these errors were encountered: