Skip to content

Instantly share code, notes, and snippets.

@jakehow
Created November 3, 2008 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakehow/21991 to your computer and use it in GitHub Desktop.
Save jakehow/21991 to your computer and use it in GitHub Desktop.
class Array
def flatten
each_with_index do |object, index|
if object.kind_of?(Array)
delete_at(index)
insert(index, *object.flatten)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment