theoooo-tally 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Theo Cushion
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,7 @@
1
+ = tally
2
+
3
+ Description goes here.
4
+
5
+ == Copyright
6
+
7
+ Copyright (c) 2009 Theo Cushion. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,56 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "tally"
8
+ gem.summary = %Q{TODO}
9
+ gem.email = "theo@jivatechnology.com"
10
+ gem.homepage = "http://github.com/theoooo/tally"
11
+ gem.authors = ["Theo Cushion"]
12
+
13
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
+ end
15
+ rescue LoadError
16
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
17
+ end
18
+
19
+ require 'rake/testtask'
20
+ Rake::TestTask.new(:test) do |test|
21
+ test.libs << 'lib' << 'test'
22
+ test.pattern = 'test/**/*_test.rb'
23
+ test.verbose = true
24
+ end
25
+
26
+ begin
27
+ require 'rcov/rcovtask'
28
+ Rcov::RcovTask.new do |test|
29
+ test.libs << 'test'
30
+ test.pattern = 'test/**/*_test.rb'
31
+ test.verbose = true
32
+ end
33
+ rescue LoadError
34
+ task :rcov do
35
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
36
+ end
37
+ end
38
+
39
+
40
+ task :default => :test
41
+
42
+ require 'rake/rdoctask'
43
+ Rake::RDocTask.new do |rdoc|
44
+ if File.exist?('VERSION.yml')
45
+ config = YAML.load(File.read('VERSION.yml'))
46
+ version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
47
+ else
48
+ version = ""
49
+ end
50
+
51
+ rdoc.rdoc_dir = 'rdoc'
52
+ rdoc.title = "tally #{version}"
53
+ rdoc.rdoc_files.include('README*')
54
+ rdoc.rdoc_files.include('lib/**/*.rb')
55
+ end
56
+
data/VERSION.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 0
4
+ :patch: 2
@@ -0,0 +1,25 @@
1
+ class TallyGenerator < Rails::Generator::NamedBase
2
+ attr_accessor :tallyables, :migration_name
3
+
4
+ def initialize(args, options = {})
5
+ super
6
+ @tallyables = args
7
+ end
8
+
9
+ def manifest
10
+ file_name = generate_file_name
11
+ @migration_name = file_name.camelize
12
+ record do |m|
13
+ m.migration_template "tally_migration.rb.erb",
14
+ File.join('db', 'migrate'),
15
+ :migration_file_name => file_name
16
+ end
17
+ end
18
+
19
+ private
20
+
21
+ def generate_file_name
22
+ "add_tallyable_to_#{@tallyables.map{|t| t.underscore.pluralize}.join("_and_")}"
23
+ end
24
+
25
+ end
@@ -0,0 +1,31 @@
1
+ class <%= migration_name %> < ActiveRecord::Migration
2
+ def self.up
3
+
4
+ create_table :tally_sheets, :force => true do |t|
5
+ t.column :voter_id, :integer
6
+ t.column :voter_type, :string
7
+ t.column :tallyable_id, :integer
8
+ t.column :tallyable_type, :string
9
+ t.column :for, :boolean
10
+ t.timestamps
11
+ end
12
+
13
+ add_index :tally_sheets, [ :voter_id, :voter_type ]
14
+ add_index :tally_sheets, [ :tallyable_id, :tallyable_type ]
15
+
16
+ <% tallyables.each do |t| -%>
17
+ add_column :<%= t.underscore.camelize.tableize %>, :tally_sheets_count, :string
18
+ <% end -%>
19
+ end
20
+
21
+ def self.down
22
+ drop_table :tally_sheets
23
+
24
+ remove_index :tally_sheets, [ :voter_id, :voter_type ]
25
+ remove_index :tally_sheets, [ :tallyable_id, :tallyable_type ]
26
+
27
+ <% tallyables.each do |t| -%>
28
+ remove_column :<%= t.underscore.camelize.tableize %>, :tally_sheets_count
29
+ <% end -%>
30
+ end
31
+ end
data/lib/tally.rb ADDED
@@ -0,0 +1,2 @@
1
+ require "tally/tallyable"
2
+ require "tally/voter"
@@ -0,0 +1,48 @@
1
+ module Tally
2
+ module Tallyable
3
+
4
+ def self.included base
5
+ base.extend ClassMethods
6
+ end
7
+
8
+ module ClassMethods
9
+ def has_tally
10
+ #require 'statistics2'
11
+
12
+ include InstanceMethods
13
+ has_many :votes, :as => :tallyable, :class_name => "TallySheet"
14
+ has_many :votes_for, :as => :tallyable, :class_name => "TallySheet", :conditions => {:for => true}
15
+ has_many :votes_against, :as => :tallyable, :class_name => "TallySheet", :conditions => {:for => false}
16
+ end
17
+ end
18
+
19
+ module InstanceMethods
20
+
21
+ def voted_by? voter
22
+ # TODO: Figure out why I can't do :voter => voter
23
+ !!votes.find(:first, :conditions => {:voter_id => voter, :voter_type => voter.class.to_s})
24
+ end
25
+
26
+ def vote_score
27
+ vote_ci_lower_bound
28
+ end
29
+
30
+ # From http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
31
+ def vote_ci_lower_bound(pos = votes_for.count, n = votes.count, power = 0.10)
32
+ 1
33
+ # if n == 0
34
+ # return 0
35
+ # end
36
+ # z = Statistics2.pnormaldist(1-power/2)
37
+ # phat = 1.0*pos/n
38
+ # (phat + z*z/(2*n) - z * Math.sqrt((phat*(1-phat)+z*z/(4*n))/n))/(1+z*z/n)
39
+ end
40
+
41
+ end
42
+ end
43
+ end
44
+
45
+ # Set it all up.
46
+ if Object.const_defined?("ActiveRecord")
47
+ ActiveRecord::Base.send(:include, Tally::Tallyable)
48
+ end
@@ -0,0 +1,59 @@
1
+ module Tally
2
+ module Voter
3
+ def self.included base
4
+ base.extend ClassMethods
5
+ end
6
+
7
+ module ClassMethods
8
+ def is_voter
9
+ include InstanceMethods
10
+ has_many :votes, :as => :voter, :class_name => "TallySheet"
11
+ has_many :votes_for, :as => :voter, :class_name => "TallySheet", :conditions => {:for => true}
12
+ has_many :votes_against, :as => :voter, :class_name => "TallySheet", :conditions => {:for => false}
13
+ end
14
+ end
15
+
16
+ module InstanceMethods
17
+
18
+ def vote_for tallyable
19
+ vote tallyable, true
20
+ end
21
+
22
+ def vote_against tallyable
23
+ vote tallyable, false
24
+ end
25
+
26
+ def vote tallyable, value
27
+ # TODO: Figure out why i can't just reference :tallyable => tallyable
28
+ votes.tally(tallyable).find(:first).try(:update_attribute, :for, !!value) ||
29
+ votes.create(:tallyable_id => tallyable.id, :tallyable_type => tallyable.class.to_s, :for => !!value)
30
+ end
31
+
32
+ def vote_destroy tallyable
33
+ votes.tally(tallyable).find(:first).try(:destroy)
34
+ # votes.find(:first, :conditions => {:tallyable => tallyable}).try(:destroy)
35
+ end
36
+
37
+ def voted_for? tallyable
38
+ !!votes.tally(tallyable).find(:first, :conditions => {:for => true})
39
+ # !!votes.find(:first, :conditions => {:tallyable => tallyable, :for => true})
40
+ end
41
+
42
+ def voted_against? tallyable
43
+ !!votes.tally(tallyable).find(:first, :conditions => {:for => false})
44
+ # !!votes.find(:first, :conditions => {:tallyable => tallyable, :for => false})
45
+ end
46
+
47
+ def voted_on? tallyable
48
+ !!votes.tally(tallyable).find(:first)
49
+ # !!votes.find(:first, :conditions => {:tallyable => tallyable})
50
+ end
51
+
52
+ end
53
+ end
54
+ end
55
+
56
+ # Set it all up.
57
+ if Object.const_defined?("ActiveRecord")
58
+ ActiveRecord::Base.send(:include, Tally::Voter)
59
+ end
data/rails/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'tally'
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: theoooo-tally
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Theo Cushion
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-04-30 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: theo@jivatechnology.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README.rdoc
25
+ files:
26
+ - LICENSE
27
+ - README.rdoc
28
+ - Rakefile
29
+ - VERSION.yml
30
+ - generators/tally/tally_generator.rb
31
+ - generators/tally/templates/tally_migration.rb.erb
32
+ - lib/tally.rb
33
+ - lib/tally/tallyable.rb
34
+ - lib/tally/voter.rb
35
+ - rails/init.rb
36
+ has_rdoc: true
37
+ homepage: http://github.com/theoooo/tally
38
+ post_install_message:
39
+ rdoc_options:
40
+ - --charset=UTF-8
41
+ require_paths:
42
+ - lib
43
+ required_ruby_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: "0"
48
+ version:
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: "0"
54
+ version:
55
+ requirements: []
56
+
57
+ rubyforge_project:
58
+ rubygems_version: 1.2.0
59
+ signing_key:
60
+ specification_version: 2
61
+ summary: TODO
62
+ test_files: []
63
+