Skip to content

Instantly share code, notes, and snippets.

@toomuchpete
Created September 29, 2017 15:58
Show Gist options
  • Save toomuchpete/0947d1adce683855786aeb39bfb6b383 to your computer and use it in GitHub Desktop.
Save toomuchpete/0947d1adce683855786aeb39bfb6b383 to your computer and use it in GitHub Desktop.
class Whatever
# Some stuff here
def [](key)
return nil unless self.respond_to?(key)
self.public_send(key)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment