Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created December 19, 2018 21:35
Show Gist options
  • Save havenwood/afd1c2d64897ebc653d1735dbb8c5d7f to your computer and use it in GitHub Desktop.
Save havenwood/afd1c2d64897ebc653d1735dbb8c5d7f to your computer and use it in GitHub Desktop.
Account = Struct.new(:id, :name, :settings)
account = Account.new
account.settings = []
account.settings << {42 => 42}
account
#=> #<struct Account id=nil, name=nil, settings=[{42=>42}]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment