Skip to content

Instantly share code, notes, and snippets.

@SpringMT
Created October 29, 2014 12:38
Show Gist options
  • Save SpringMT/741ae42e63999a7476a3 to your computer and use it in GitHub Desktop.
Save SpringMT/741ae42e63999a7476a3 to your computer and use it in GitHub Desktop.
class A
def method_missing(key, value = nil, *args, &block)
p "key: #{key}, value: #{value}"
end
end
A.new.hoge {}
A.new.hoge({})
@SpringMT
Copy link
Author

"key: hoge, value: "
"key: hoge, value: {}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment