Story Details

  • How to create value objects in Ruby – the idiomatic way

    Posted: 2025-03-21 09:43:16

    This post advocates for using Ruby's built-in features like Struct and immutable data structures (via freeze) to create simple, efficient value objects. It argues against using more complex approaches like dry-struct or Virtus for basic cases, highlighting that the lightweight, idiomatic approach often provides sufficient functionality with minimal overhead. The article illustrates how Struct provides concise syntax for defining attributes and automatic equality and hashing based on those attributes, fulfilling the core requirements of value objects. Finally, it demonstrates how to enforce immutability by freezing instances, ensuring predictable behavior and preventing unintended side effects.

    Summary of Comments ( 1 )
    https://news.ycombinator.com/item?id=43433648

    HN users largely criticized the article for misusing or misunderstanding the term "Value Object." Commenters pointed out that true Value Objects are immutable and compared by value, not identity. They argued that the article's examples, particularly using mutable hashes and relying on equal?, were not representative of Value Objects and promoted bad practices. Several users suggested alternative approaches like using Struct or creating immutable classes with custom equality methods. The discussion also touched on the performance implications of immutable objects in Ruby and the nuances of defining equality for more complex objects. Some commenters felt the title was misleading, promoting a non-idiomatic approach.