A summary of data about the Ruby ecosystem.

Recent Releases of https://github.com/dry-rb/dry-equalizer

https://github.com/dry-rb/dry-equalizer -

v0.3.0 2019-11-07

Changed

  • [BREAKING] Dropped support for Ruby < 2.4

Added

  • Memoization option for immutable objects. If immutable: true is passed the result of .hash call will be memoized after its first invocation or on .freeze call (skryukov)
    class User
      include Dry::Equalizer(:id, :name, :age, immutable: true)
    end
    

Compare v0.2.2...v0.3.0

- Ruby
Published by flash-gordon almost 7 years ago

https://github.com/dry-rb/dry-equalizer -

v0.2.2 2019-03-08

Added

  • Generation of #to_s and #inspect can be disabled with inspect: false (flash-gordon)
    class User
      include Dry::Equalizer(:id, :name, :age, inspect: false)
    end
    

Compare v0.2.1...v0.2.2

- Ruby
Published by flash-gordon over 7 years ago