Hacker News new | ask | show | jobs
Polyfill-data gem adds the Ruby 3.2 Data class to lower Ruby versions (github.com)
2 points by saturnflyer 1251 days ago
1 comments

I'm on a project that isn't yet on ruby 3.2 and wanted to use the new Data class. I implemented this to allow me to move to it easily.

It does still have 1 failing test about redefining the initialize method with a block, but it works for all other cases.

The Ruby 3.2 Data class is based on C code from Struct. This is all implemented with Ruby.