has_elo 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in has_elo.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Cameron Sutter
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # HasElo
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'has_elo'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install has_elo
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/has_elo/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'has_elo/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "has_elo"
8
+ spec.version = HasElo::VERSION
9
+ spec.authors = ["Cameron Sutter"]
10
+ spec.email = ["cameronsutter0@gmail.com"]
11
+ spec.summary = %q{Give models elo scores}
12
+ spec.description = %q{A gem that gives ActiveRecord models an elo score object}
13
+ spec.homepage = "https://github.com/cameronsutter/has_elo"
14
+ spec.license = "MIT"
15
+
16
+ spec.add_dependency "elo"
17
+
18
+ spec.files = `git ls-files`.split($/)
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.5"
24
+ spec.add_development_dependency "rake"
25
+ end
@@ -0,0 +1,30 @@
1
+ require 'rails/generators'
2
+ require 'rails/generators/migration'
3
+
4
+ module HasElo
5
+ class InstallGenerator < Rails::Generators::Base
6
+ include Rails::Generators::Migration
7
+
8
+ desc "Creates a migration which creates a elo table"
9
+
10
+ def self.source_root
11
+ File.join(File.dirname(__FILE__), 'templates')
12
+ end
13
+
14
+ def self.next_migration_number(dirname) #:nodoc:
15
+ if ActiveRecord::Base.timestamped_migrations
16
+ Time.now.utc.strftime("%Y%m%d%H%M%S")
17
+ else
18
+ "%.3d" % (current_migration_number(dirname) + 1)
19
+ end
20
+ end
21
+
22
+
23
+ # Every method that is declared below will be automatically executed when the generator is run
24
+
25
+ def create_migration_file
26
+ migration_file = File.join(File.dirname(__FILE__), 'templates', 'migration.rb')
27
+ migration_template migration_file, 'db/migrate/create_elo_table.rb'
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,15 @@
1
+ class CreateEloTable < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :elo, :force => true do |t|
4
+ t.references :eloable, polymorphic: true
5
+ t.integer :rating, default: 0
6
+ t.integer :games_played, default: 0
7
+ t.boolean :pro, default: false
8
+ t.timestamps
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ drop_table :elo
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+ require "has_elo/version"
2
+ require "has_elo/eloable"
3
+
4
+ module HasElo
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,33 @@
1
+ module HasElo
2
+ class Elo < ::ActiveRecord::Base
3
+ belongs_to :eloable, :polymorphic => true
4
+ include Elo
5
+
6
+ def player
7
+ @player |= Elo::Player.new(:games_played => games_played, :rating => rating, :pro => pro)
8
+ end
9
+
10
+ def wins_against(challenger)
11
+ player.wins_from(challenger)
12
+ save_stats
13
+ end
14
+
15
+ def loses_to(challenger)
16
+ player.loses_from(challenger)
17
+ save_stats
18
+ end
19
+
20
+ def ties_with(challenger)
21
+ player.plays_draw(challenger)
22
+ save_stats
23
+ end
24
+
25
+ def save_stats
26
+ self.rating = player.rating
27
+ self.games_played = player.games_played
28
+ self.pro = player.pro
29
+ save
30
+ end
31
+
32
+ end
33
+ end
@@ -0,0 +1,24 @@
1
+ module HasElo
2
+ module Eloable
3
+ extend ActiveSupport::Concern
4
+
5
+ module ClassMethods
6
+ def has_elo
7
+ class_eval do
8
+ has_one :elo, as: :eloable, class_name: 'HasElo::Elo', dependent: :delete_all
9
+ end
10
+
11
+ after_create :init_elo
12
+
13
+ def init_elo
14
+
15
+ end
16
+ end
17
+ end
18
+
19
+ module InstanceMethods
20
+
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,3 @@
1
+ module HasElo
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: has_elo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Cameron Sutter
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-03-12 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: elo
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: bundler
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '1.5'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '1.5'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: A gem that gives ActiveRecord models an elo score object
63
+ email:
64
+ - cameronsutter0@gmail.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - has_elo.gemspec
75
+ - lib/generators/has_elo/install_generator.rb
76
+ - lib/generators/has_elo/migration.rb
77
+ - lib/has_elo.rb
78
+ - lib/has_elo/elo.rb
79
+ - lib/has_elo/eloable.rb
80
+ - lib/has_elo/version.rb
81
+ homepage: https://github.com/cameronsutter/has_elo
82
+ licenses:
83
+ - MIT
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 1.8.23
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Give models elo scores
106
+ test_files: []