1
0
mirror of https://github.com/avitex/elixir-glicko synced 2024-11-21 18:59:57 +00:00
Elixir implementation of the Glicko rating system
Go to file
Mikael Muszynski db54b10e93 Change multi-line do: function definitions to do (#3)
Change the cases where a `do:` is followed by a `mix format` mandated
line break, or if the expression following the `do:` would span multiple
lines anyway.

The only exception to the rule above is the first change in the
changeset, as this was done for the function style of `initial_rating`
to be consistent with `initial_rating_deviation`.
2020-01-19 14:54:18 +00:00
lib Change multi-line do: function definitions to do (#3) 2020-01-19 14:54:18 +00:00
test Run mix format (#1) 2020-01-19 13:58:40 +00:00
.credo.exs Configure credo 2017-11-29 12:11:35 +11:00
.formatter.exs Run mix format (#1) 2020-01-19 13:58:40 +00:00
.gitignore Initial commit 2017-11-15 20:32:39 +11:00
.travis.yml Update Elixir version (#2) 2020-01-19 14:43:22 +00:00
LICENSE Update README and LICENSE 2020-01-19 14:24:52 +00:00
mix.exs Change multi-line do: function definitions to do (#3) 2020-01-19 14:54:18 +00:00
mix.lock Prepare for release 2017-11-16 14:49:53 +11:00
README.md Update README and LICENSE 2020-01-19 14:24:52 +00:00

Build Status Hex.pm Hex Docs Inline docs

Glicko

Implementation of the Glicko rating system.
Documentation hosted on hexdocs.

Installation

Add glicko to your list of dependencies in mix.exs:

def deps do
  [{:glicko, "~> 0.6.0"}]
end