module MoreMath::RankingCommon

def random!

Switches this instance to a randomly ranked instance.
def random!
  new_rank = rand(last + 1).to_i
  self.rank = new_rank
  self
end