Created
December 21, 2018 16:56
-
-
Save jmmastey/c17b1081c899821ddf1683addd731256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Struct | |
# use the members of this struct to pull out hash keys in the right order | |
def self.from_hash(hash) | |
new( | |
*hash.symbolize_keys | |
.values_at(*members), | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment