Skip to content

Instantly share code, notes, and snippets.

@alexbartlow
Created April 10, 2013 21:55
Show Gist options
  • Save alexbartlow/5358811 to your computer and use it in GitHub Desktop.
Save alexbartlow/5358811 to your computer and use it in GitHub Desktop.
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