Skip to content

Instantly share code, notes, and snippets.

@latentflip
Created March 10, 2011 11:04
Show Gist options
  • Save latentflip/863947 to your computer and use it in GitHub Desktop.
Save latentflip/863947 to your computer and use it in GitHub Desktop.
class Array
alias_method :push!, :push
def push(*els)
return self + [*els]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment