module Dice

Constants

VERSION

Public Class Methods

parse(args) click to toggle source
# File lib/dice.rb, line 5
def self.parse(args)
  parser = Parser.new(args)
  parser.call
  @options = parser.options
end
run() click to toggle source
# File lib/dice.rb, line 11
def self.run
  roller = Roller.new(@options)
  roller.call
end