Skip to content

Instantly share code, notes, and snippets.

@latompa
Created February 24, 2015 15:54
Show Gist options
  • Save latompa/c4d67fc89616798f7d8f to your computer and use it in GitHub Desktop.
Save latompa/c4d67fc89616798f7d8f to your computer and use it in GitHub Desktop.
Hashie::Mash vs OpenStruct
(Hashie::Mash.new :key => 5).key
ArgumentError: wrong number of arguments (0 for 1)
from (irb):1:in `key'
from (irb):1
(OpenStruct.new :key => 5).key
=> 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment