Skip to content

Instantly share code, notes, and snippets.

@joshsusser
Created December 21, 2009 20:14
Show Gist options
  • Save joshsusser/261199 to your computer and use it in GitHub Desktop.
Save joshsusser/261199 to your computer and use it in GitHub Desktop.
module Comparable
def min(*values)
(values << self).min
end
def max(*values)
(values << self).max
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment