Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created December 1, 2011 21:01
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 workmad3/1419831 to your computer and use it in GitHub Desktop.
Save workmad3/1419831 to your computer and use it in GitHub Desktop.
class Range
def rand
to_a.sample
end
end
class Range
def rand
rand(max - min) + min
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment