Skip to content

Instantly share code, notes, and snippets.

@mattallen
Created January 2, 2009 02:44
Show Gist options
  • Save mattallen/42451 to your computer and use it in GitHub Desktop.
Save mattallen/42451 to your computer and use it in GitHub Desktop.
class Array
def uniq_by(method)
@found = []
self.each do |x|
@found << x unless @found.any?{|y| y.send(method) == x.send(method)}
end
@found
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment