Created
April 10, 2013 21:55
-
-
Save alexbartlow/5358811 to your computer and use it in GitHub Desktop.
This file contains 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
def method_with_defaults(options={}) | |
defaults = { | |
foo: 1, | |
bar: 2, | |
baz: 'some_string' | |
} | |
arguments = defaults.merge(options) | |
puts arguments.inspect | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment