Classes: Parser, Roller
'0.0.1'.freeze
5 6 7 8 9
# File 'lib/dice.rb', line 5 def self.parse(args) parser = Parser.new(args) parser.call @options = parser.options end
11 12 13 14
# File 'lib/dice.rb', line 11 def self.run roller = Roller.new(@options) roller.call end