Module: Olympic::Rating

Defined in:
lib/olympic/rating/glicko.rb,
lib/olympic/error.rb,
lib/olympic/rating.rb,
lib/olympic/rating/base.rb,
lib/olympic/rating/glicko/formula.rb

Overview

note:

Match#rating
Match#outcome
Match#derivation

Defined Under Namespace

Classes: Base, Error, Glicko

Constant Summary collapse

RATINGS =
{
  glicko: Glicko
}

Class Method Summary collapse

Class Method Details

.for(name) ⇒ Object



11
12
13
# File 'lib/olympic/rating.rb', line 11

def self.for(name)
  RATINGS.fetch(name)
end