Skip to content

Instantly share code, notes, and snippets.

@ChadyG
Created April 20, 2010 01:54
Show Gist options
  • Save ChadyG/371918 to your computer and use it in GitHub Desktop.
Save ChadyG/371918 to your computer and use it in GitHub Desktop.
class Array
def method_missing(method, *arg)
self.each { |item| item.send(method, *arg) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment