Ruby challenge provided by Makers
Bowling score calculations
100% test coverage
- clone this git directory
cd bowling-challenge-ruby
bundle
irb -r './lib/game.rb'
game = Game.new
to start a new gamegame.roll(num_of_pins)
until you reach 'game over'game.total_score
to count your final score, or anytime during the game
rspec
rubocop