Skip to content

Instantly share code, notes, and snippets.

@rickhull
Created November 23, 2017 00:12
Show Gist options
  • Save rickhull/d7e0c2845c3b7587aaf370569c5df6d3 to your computer and use it in GitHub Desktop.
Save rickhull/d7e0c2845c3b7587aaf370569c5df6d3 to your computer and use it in GitHub Desktop.
class Character
def self.generate_upp
6.times.reduce('') { |memo, _|
memo + Dice.roll_dice(6,2,1).to_s(16).upcase
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment