irv 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/Gemfile +4 -2
- data/Gemfile.lock +1 -1
- data/README.md +72 -4
- data/Rakefile +1 -1
- data/bin/console +4 -3
- data/irv.gemspec +17 -16
- data/lib/irv/result.rb +4 -2
- data/lib/irv/round.rb +1 -1
- data/lib/irv/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8a99789b0cbe5756c7d1dfd5666e9096102c748a82dc51c8b032f8c9667fe94
|
4
|
+
data.tar.gz: bf4f6f58576731266a3d825a7bdb910ec1ddd7b355f39f3647bd40262d1f0a01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4e2ec30b5492857c20edc92587e62f81c0720d0c20005b7c3e1537e82d3d01b865393601fc567b8be517df25d70b25000721c0757ef8b6bdf8c1f31462bd934
|
7
|
+
data.tar.gz: 3125e2cf89fda760e11bc0102feec0411f08d58c16e9d0e5e73e4e633ba30f8200481562f5df071118d632948e0029de7acf3838f76a2e38f762744f3d7a047e
|
data/Gemfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
4
6
|
|
5
7
|
# Specify your gem's dependencies in irv.gemspec
|
6
8
|
gemspec
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Irv
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
This gem provides [Instant-Runoff Voting](https://en.wikipedia.org/wiki/Instant-runoff_voting) for Ruby program.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,7 +20,77 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
23
|
+
```ruby
|
24
|
+
require 'irv'
|
25
|
+
|
26
|
+
irv = Irv.new(['John', 'Paul', 'Ringo', 'George'])
|
27
|
+
|
28
|
+
ballots = []
|
29
|
+
5.times { ballots << irv.issue_ballot }
|
30
|
+
|
31
|
+
ballots[0].fill!(['John', 'George', 'Ringo'])
|
32
|
+
ballots[1].fill!(['John', 'Ringo', 'George', 'Paul'])
|
33
|
+
ballots[2].fill!(['Paul', 'George', 'Ringo', 'John'])
|
34
|
+
ballots[3].fill!(['Ringo', 'Paul', 'George'])
|
35
|
+
ballots[4].fill!(['George', 'Ringo', 'John'])
|
36
|
+
|
37
|
+
ballots.each { |ballot| irv.poll!(ballot) }
|
38
|
+
|
39
|
+
puts irv.winner
|
40
|
+
|
41
|
+
# => 'George'
|
42
|
+
```
|
43
|
+
|
44
|
+
### Why George was choosen in this example?
|
45
|
+
|
46
|
+
#### Round 1
|
47
|
+
|
48
|
+
| |A|B|C|D|E|
|
49
|
+
|:-:|:-:|:-:|:-:|:-:|:-:|
|
50
|
+
|John |1|1|4|-|3|
|
51
|
+
|Paul |-|4|1|2|-|
|
52
|
+
|Ringo |3|2|3|1|2|
|
53
|
+
|George|2|3|2|3|1|
|
54
|
+
|
55
|
+
John got two first ranked votes. But it wasn't the majority.
|
56
|
+
So, Election goes on without last place candidate.
|
57
|
+
|
58
|
+
In this case, Paul, Ringo and George got one first ranked vote.
|
59
|
+
How was second ranked vote? Paul got only one vote. Ringo and George got two.
|
60
|
+
Therefore Paul got lose in this round.
|
61
|
+
|
62
|
+
#### Round 2
|
63
|
+
|
64
|
+
| |A|B|C|D|E|
|
65
|
+
|:-:|:-:|:-:|:-:|:-:|:-:|
|
66
|
+
|John |1|1|3|-|3|
|
67
|
+
|Ringo |3|2|2|1|2|
|
68
|
+
|George|2|3|1|2|1|
|
69
|
+
|
70
|
+
John and George got two first ranked votes. Ringo got one.
|
71
|
+
So, Ringo got lose in this round
|
72
|
+
|
73
|
+
#### Round 3
|
74
|
+
|
75
|
+
| |A|B|C|D|E|
|
76
|
+
|:-:|:-:|:-:|:-:|:-:|:-:|
|
77
|
+
|John |1|1|2|-|2|
|
78
|
+
|George|2|2|1|1|1|
|
79
|
+
|
80
|
+
George got three first ranked votes! It was a majority. So George became winner.
|
81
|
+
|
82
|
+
#### If you know these stuff in a Ruby program
|
83
|
+
|
84
|
+
```ruby
|
85
|
+
# After polled...
|
86
|
+
|
87
|
+
result = irv.result
|
88
|
+
result.process.each { |pr| puts "round: #{pr.order} /majority: #{pr.majority} / loser: #{pr.loser}" }
|
89
|
+
|
90
|
+
# => round: 1 /majority: / loser: Paul
|
91
|
+
# => round: 2 /majority: / loser: Ringo
|
92
|
+
# => round: 3 /majority: George / loser:
|
93
|
+
```
|
26
94
|
|
27
95
|
## Development
|
28
96
|
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'irv'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "irv"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start(__FILE__)
|
data/irv.gemspec
CHANGED
@@ -1,30 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
|
-
lib = File.expand_path(
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
5
|
+
require 'irv/version'
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
8
|
+
spec.name = 'irv'
|
8
9
|
spec.version = Irv::VERSION
|
9
|
-
spec.authors = [
|
10
|
-
spec.email = [
|
10
|
+
spec.authors = ['highwide']
|
11
|
+
spec.email = ['hochweit728@gmail.com']
|
11
12
|
|
12
|
-
spec.summary =
|
13
|
-
spec.description =
|
14
|
-
spec.homepage =
|
15
|
-
spec.license =
|
13
|
+
spec.summary = 'Providing a Instant-runoff Voting.'
|
14
|
+
spec.description = 'Instant-runoff Voting is a type of ranked preferential voting method. This gem makes it enable Ruby program.'
|
15
|
+
spec.homepage = 'https://github.com/highwide/irv'
|
16
|
+
spec.license = 'MIT'
|
16
17
|
|
17
18
|
# Specify which files should be added to the gem when it is released.
|
18
19
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
-
spec.files = Dir.chdir(File.expand_path(
|
20
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
20
21
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
22
|
end
|
22
|
-
spec.bindir =
|
23
|
+
spec.bindir = 'exe'
|
23
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
-
spec.require_paths = [
|
25
|
+
spec.require_paths = ['lib']
|
25
26
|
|
26
|
-
spec.add_development_dependency
|
27
|
-
spec.add_development_dependency
|
28
|
-
spec.add_development_dependency
|
29
|
-
spec.add_development_dependency
|
27
|
+
spec.add_development_dependency 'bundler', '~> 1.17'
|
28
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
29
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
30
|
+
spec.add_development_dependency 'rubocop', '~> 0.71.0'
|
30
31
|
end
|
data/lib/irv/result.rb
CHANGED
@@ -10,12 +10,14 @@ module Irv
|
|
10
10
|
@process = []
|
11
11
|
round_order = 1
|
12
12
|
round = Round.new(round_order, candidates, ballots.map(&:ranked_candidates))
|
13
|
-
|
13
|
+
|
14
|
+
(candidates.count - 1).times do
|
14
15
|
@process << round
|
16
|
+
break if round.exist_majority?
|
17
|
+
|
15
18
|
round_order += 1
|
16
19
|
round = Round.new(round_order, round.next_candidates, round.next_votes)
|
17
20
|
end
|
18
|
-
@process << round
|
19
21
|
end
|
20
22
|
|
21
23
|
def winner
|
data/lib/irv/round.rb
CHANGED
data/lib/irv/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- highwide
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-06-
|
11
|
+
date: 2019-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|