-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Ruby 2.5 Warnings on Data classes #96
Comments
This isn't a ruru issue unless you're specifically saying that ruru's docs are suggesting the use of Data. As for using Data it is depricated. You can see the discussion on the Ruby Bug Tracker # 3072. That will also have the relevant information you're looking for on what you can use instead. |
As per https://github.com/d-unseductable/ruru/blob/master/src/dsl.rs#L392, the documentation actually currently says that |
Thanks for pointing that out @asppsa . I haven't yet come across a need for using it so I'm not sure at the moment about implementing an alternative. |
I tried switching everything over from
|
The docs recommend inheriting from
Data
following this idiom:On Ruby 2.5, this prints
warning: constant ::Data is deprecated
every timeData
is accessed. I guess that there is some way to access this via the C extension API but I haven't found it yet.The text was updated successfully, but these errors were encountered: