86 87 88 89 90 91 92
# File 'lib/cribbage.rb', line 86 def total_score score = 0 @points.each do |k,v| score += v[:point_value] end score end