Skip to content

Instantly share code, notes, and snippets.

@levinalex
Created January 18, 2009 18:32
Show Gist options
  • Save levinalex/48727 to your computer and use it in GitHub Desktop.
Save levinalex/48727 to your computer and use it in GitHub Desktop.
module Enumerable
def all_equal?
inject { |a,b| break false unless a == b; b } != false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment