Random Ruby Tricks: Struct.new

from blog Steve Klabnik, | ↗ original
Sep 01 2012 One of my favorite classes in Ruby is Struct, but I feel like many Rubyists don’t know when to take advantage of it. The standard library has a lot of junk in it, but Struct and OStruct are super awesome. Struct If you haven’t used Struct before, here’s the documentation of Struct from the Ruby standard...