Doesn't work with Ruby 4.0 - Homebrew's [ruby formula](https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/r/ruby.rb) is now 4.0.1 ``` /lib/fuzzy.rb:21: warning: constant ::Data is deprecated /lib/fuzzy.rb:21:in `<class:Fuzzy>': undefined method `define' for Data:Class (NoMethodError) ``` `Data.define` was added in 3.2 but removed in 4.0. Could use `Struct.new` instead? Pinned to ruby@3.3 in my tap for now: https://github.com/o6uoq/homebrew-tap/blob/main/Formula/try.rb
Doesn't work with Ruby 4.0 - Homebrew's ruby formula is now 4.0.1
Data.definewas added in 3.2 but removed in 4.0. Could useStruct.newinstead?Pinned to ruby@3.3 in my tap for now: https://github.com/o6uoq/homebrew-tap/blob/main/Formula/try.rb