├── .document ├── .gitignore ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── elo.gemspec ├── lib ├── elo.rb └── elo │ ├── configuration.rb │ ├── game.rb │ ├── helper.rb │ ├── player.rb │ └── rating.rb └── spec ├── elo_spec.rb ├── spec.opts └── spec_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | -------------------------------------------------------------------------------- /elo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/elo.gemspec -------------------------------------------------------------------------------- /lib/elo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo.rb -------------------------------------------------------------------------------- /lib/elo/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo/configuration.rb -------------------------------------------------------------------------------- /lib/elo/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo/game.rb -------------------------------------------------------------------------------- /lib/elo/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo/helper.rb -------------------------------------------------------------------------------- /lib/elo/player.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo/player.rb -------------------------------------------------------------------------------- /lib/elo/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/lib/elo/rating.rb -------------------------------------------------------------------------------- /spec/elo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/spec/elo_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iain/elo/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------