From a528cedd36c77487496147b5880205799dbcb242 Mon Sep 17 00:00:00 2001 From: AndrewMurrell Date: Mon, 28 Apr 2014 15:03:50 -0400 Subject: I fixed it. added self and fixed variable names. --- lib/scoring/marginal_peer.rb | 4 ++-- lib/scoring/winner_takes_all.rb | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/scoring/marginal_peer.rb b/lib/scoring/marginal_peer.rb index 13e1796..aa05f5e 100644 --- a/lib/scoring/marginal_peer.rb +++ b/lib/scoring/marginal_peer.rb @@ -1,10 +1,10 @@ module Scoring module MarginalPeer - def stats_needed + def self.stats_needed return [:rating] end - def score(match, interface) + def self.score(match, interface) scores = {} match.players.each do |player| scores[player.user_name] = interface.get_statistic(match, player, :rating) diff --git a/lib/scoring/winner_takes_all.rb b/lib/scoring/winner_takes_all.rb index 517dfd6..bf95781 100644 --- a/lib/scoring/winner_takes_all.rb +++ b/lib/scoring/winner_takes_all.rb @@ -1,10 +1,10 @@ module Scoring module WinnerTakesAll - def stats_needed + def self.stats_needed return [] end - def score(match, interface) + def self.score(match, interface) scores = {} match.players.each do |player| scores[player.user_name] = score_user(match.win?(player)) @@ -13,7 +13,7 @@ module Scoring end private - def score_user(win) + def self.score_user(win) win.nil? ? 0.5 : win ? 1 : 0 end end -- cgit v1.2.3