Method: Cribbage::Hand#total_score

Defined in:
lib/cribbage.rb

#total_scoreObject



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