Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
larskuhnt committed Apr 9, 2010
0 parents commit ddd750c
Show file tree
Hide file tree
Showing 17 changed files with 293 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .document
@@ -0,0 +1,5 @@
README.rdoc
lib/**/*.rb
bin/*
features/**/*.feature
LICENSE
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp

## PROJECT::GENERAL
coverage
rdoc
pkg

## PROJECT::SPECIFIC
Empty file added CHANGELOG
Empty file.
20 changes: 20 additions & 0 deletions LICENSE
@@ -0,0 +1,20 @@
Copyright (c) 2009 Lars Kuhnt

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17 changes: 17 additions & 0 deletions README.rdoc
@@ -0,0 +1,17 @@
= trueskill

Description goes here.

== Note on Patches/Pull Requests

* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a
future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
* Send me a pull request. Bonus points for topic branches.

== Copyright

Copyright (c) 2010 Lars Kuhnt. See LICENSE for details.
45 changes: 45 additions & 0 deletions Rakefile
@@ -0,0 +1,45 @@
require 'rubygems'
require 'rake'

begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "trueskill"
gem.summary = %Q{A library for the trueskill rating system}
gem.description = %Q{A library for the trueskill rating system}
gem.email = "lars.kuhnt@gmail.com"
gem.homepage = "http://github.com/larskuhnt/trueskill"
gem.authors = ["Lars Kuhnt"]
gem.add_development_dependency "rspec", ">= 1.2.9"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.libs << 'lib' << 'spec'
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "trueskill #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.1.0
20 changes: 20 additions & 0 deletions lib/models/calculation.rb
@@ -0,0 +1,20 @@
module TrueSkill

class Calculation

@@k = 10
cattr_accessor :k

def initialize(configuration)
@configuration = configuration
end

def evaluate(game)

end

private

end

end
21 changes: 21 additions & 0 deletions lib/models/game.rb
@@ -0,0 +1,21 @@
puts "loaded #{__FILE__}"

module TrueSkill

class Game

# array of players
attr_accessor :teams

# result of the game coded as array
# example: [0,1] team at index 1 won
attr_accessor :result

def initialize(teams = [], result = [])
@teams = teams
@result = result
end

end

end
17 changes: 17 additions & 0 deletions lib/models/player.rb
@@ -0,0 +1,17 @@
module TrueSkill

class Player

# mean value of the players rating
attr_accessor :rating

# standard deviation of the players rating
attr_accessor :deviation

def initialize(rating = 25.0, deviation = 8.333333)
@rating = rating
@deviation = deviation
end
end

end
11 changes: 11 additions & 0 deletions lib/trueskill.rb
@@ -0,0 +1,11 @@
Dir["#{File.dirname(__FILE__)}/**/*.rb"].each do |filename|
require filename
end

module TrueSkill

def self.evaluate

end

end
13 changes: 13 additions & 0 deletions spec/models/game_spec.rb
@@ -0,0 +1,13 @@
require File.dirname(__FILE__) + '/../spec_helper'

describe "Game" do

before :each do
@game = TrueSkill::Game.new
end

it "should respond to result" do
@game.result.should be_nil
end

end
17 changes: 17 additions & 0 deletions spec/models/player_spec.rb
@@ -0,0 +1,17 @@
require File.dirname(__FILE__) + '/../spec_helper'

describe "Player" do

before :each do
@player = TrueSkill::Player.new
end

it "should have a default rating of 25.0" do
@player.rating.should == 25.0
end

it "should have a default deviation of 8.333333" do
@player.deviation.should == 8.333333
end

end
1 change: 1 addition & 0 deletions spec/spec.opts
@@ -0,0 +1 @@
--color
8 changes: 8 additions & 0 deletions spec/spec_helper.rb
@@ -0,0 +1,8 @@
require 'rubygems'
require "#{File.dirname(__FILE__)}/../lib/trueskill.rb"
require 'spec'
require 'spec/autorun'

Spec::Runner.configure do |config|

end
20 changes: 20 additions & 0 deletions spec/trueskill_spec.rb
@@ -0,0 +1,20 @@
require File.dirname(__FILE__) + '/../spec_helper'

describe "TrueSkill" do

describe 'update for a single game' end

before :each do
@player1 = TrueSkill::Player.new
@player2 = TrueSkill::Player.new
@game = TrueSkill::Game.new([[@player1], [@player2]], [1,0])
end

it "should" do
TrueSkill.update(@game)

end

end

end
56 changes: 56 additions & 0 deletions trueskill.gemspec
@@ -0,0 +1,56 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{trueskill}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Lars Kuhnt"]
s.date = %q{2010-04-09}
s.description = %q{A library for the trueskill rating system}
s.email = %q{lars.kuhnt@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"CHANGELOG",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/trueskill.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/trueskill_spec.rb",
"trueskill.gemspec"
]
s.homepage = %q{http://github.com/larskuhnt/trueskill}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{A library for the trueskill rating system}
s.test_files = [
"spec/spec_helper.rb",
"spec/trueskill_spec.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end

0 comments on commit ddd750c

Please sign in to comment.