irv 0.1.1 → 0.2.0
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/.rubocop.yml +13 -1
- data/.travis.yml +6 -1
- data/Gemfile.lock +1 -1
- data/README.md +9 -11
- data/irv.gemspec +1 -0
- data/lib/irv.rb +1 -1
- data/lib/irv/election.rb +17 -6
- data/lib/irv/result.rb +1 -1
- data/lib/irv/version.rb +1 -1
- metadata +3 -4
- data/lib/irv/ballot.rb +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '094a4e98ba00996613d8394a7a784c5e42452ccec63ca480f8f0bbd1e23923ff'
|
4
|
+
data.tar.gz: e8303a420c2e50c800a8b42cb99e86d3e93a74e6e5d4bae6066d3dcc916304c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ded7eb4aef961ae5e4a5a29bc7b5689ce5b3ae115b072272450e8dca849472164bb94daaed81dbc88dfd27550357814a79882fab9cd64639a9a69450577ab54
|
7
|
+
data.tar.gz: 5154140b71dcd1b5611ee95eb430f080317d96d1fe13c65b42ee22fb5aef7e21507a80d3107a534507f7315955aa0ef0f5c004aa82be36d90754dde935606a15
|
data/.rubocop.yml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion: 2.
|
2
|
+
TargetRubyVersion: 2.4
|
3
3
|
DisplayCopNames: true
|
4
4
|
|
5
|
+
Layout/ExtraSpacing:
|
6
|
+
Exclude:
|
7
|
+
- 'irv.gemspec'
|
8
|
+
|
9
|
+
Layout/SpaceAroundOperators:
|
10
|
+
Exclude:
|
11
|
+
- 'irv.gemspec'
|
12
|
+
|
5
13
|
Style/AsciiComments:
|
6
14
|
Enabled: false
|
7
15
|
|
@@ -17,6 +25,10 @@ Style/RegexpLiteral:
|
|
17
25
|
Style/NegatedWhile:
|
18
26
|
Enabled: false
|
19
27
|
|
28
|
+
Style/WordArray:
|
29
|
+
Exclude:
|
30
|
+
- 'spec/irv_spec.rb'
|
31
|
+
|
20
32
|
Metrics/AbcSize:
|
21
33
|
Enabled: false
|
22
34
|
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
# Irv
|
2
|
+
[](https://badge.fury.io/rb/irv)
|
3
|
+
[](https://travis-ci.org/highwide/irv)
|
2
4
|
|
3
5
|
This gem provides [Instant-Runoff Voting](https://en.wikipedia.org/wiki/Instant-runoff_voting) for Ruby program.
|
4
6
|
|
@@ -25,16 +27,12 @@ require 'irv'
|
|
25
27
|
|
26
28
|
irv = Irv.new(['John', 'Paul', 'Ringo', 'George'])
|
27
29
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
ballots[3].fill!(['Ringo', 'Paul', 'George'])
|
35
|
-
ballots[4].fill!(['George', 'Ringo', 'John'])
|
36
|
-
|
37
|
-
ballots.each { |ballot| irv.poll!(ballot) }
|
30
|
+
irv
|
31
|
+
.poll!(['John', 'George', 'Ringo'])
|
32
|
+
.poll!(['John', 'Ringo', 'George', 'Paul'])
|
33
|
+
.poll!(['Paul', 'George', 'Ringo', 'John'])
|
34
|
+
.poll!(['Ringo', 'Paul', 'George'])
|
35
|
+
.poll!(['George', 'Ringo', 'John'])
|
38
36
|
|
39
37
|
puts irv.winner
|
40
38
|
|
@@ -79,7 +77,7 @@ So, Ringo got lose in this round
|
|
79
77
|
|
80
78
|
George got three first ranked votes! It was a majority. So George became winner.
|
81
79
|
|
82
|
-
#### If you know these stuff in a Ruby program
|
80
|
+
#### If you want to know these stuff in a Ruby program
|
83
81
|
|
84
82
|
```ruby
|
85
83
|
# After polled...
|
data/irv.gemspec
CHANGED
@@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.description = 'Instant-runoff Voting is a type of ranked preferential voting method. This gem makes it enable Ruby program.'
|
15
15
|
spec.homepage = 'https://github.com/highwide/irv'
|
16
16
|
spec.license = 'MIT'
|
17
|
+
spec.required_ruby_version = '>= 2.4.0'
|
17
18
|
|
18
19
|
# Specify which files should be added to the gem when it is released.
|
19
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/irv.rb
CHANGED
data/lib/irv/election.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'irv/ballot'
|
4
3
|
require 'irv/result'
|
5
4
|
|
6
5
|
module Irv
|
@@ -12,12 +11,16 @@ module Irv
|
|
12
11
|
@ballots = []
|
13
12
|
end
|
14
13
|
|
15
|
-
def
|
16
|
-
|
17
|
-
|
14
|
+
def poll!(ranked_candidates)
|
15
|
+
if incorrect_candidates?(ranked_candidates)
|
16
|
+
raise(
|
17
|
+
PollingWithIncorrectCandidatesError,
|
18
|
+
"Polling #{ranked_candidates}, but acceptable for only #{@candidates}"
|
19
|
+
)
|
20
|
+
end
|
18
21
|
|
19
|
-
|
20
|
-
|
22
|
+
@ballots << ranked_candidates
|
23
|
+
self
|
21
24
|
end
|
22
25
|
|
23
26
|
def result
|
@@ -29,5 +32,13 @@ module Irv
|
|
29
32
|
def winner
|
30
33
|
result&.winner
|
31
34
|
end
|
35
|
+
|
36
|
+
private
|
37
|
+
|
38
|
+
def incorrect_candidates?(ranked_candidates)
|
39
|
+
ranked_candidates.class != Array ||
|
40
|
+
ranked_candidates.count - ranked_candidates.uniq.count != 0 ||
|
41
|
+
ranked_candidates.any? { |c| !@candidates.include?(c) }
|
42
|
+
end
|
32
43
|
end
|
33
44
|
end
|
data/lib/irv/result.rb
CHANGED
@@ -9,7 +9,7 @@ module Irv
|
|
9
9
|
def initialize(candidates, ballots)
|
10
10
|
@process = []
|
11
11
|
round_order = 1
|
12
|
-
round = Round.new(round_order, candidates, ballots
|
12
|
+
round = Round.new(round_order, candidates, ballots)
|
13
13
|
|
14
14
|
(candidates.count - 1).times do
|
15
15
|
@process << round
|
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.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- highwide
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -88,7 +88,6 @@ files:
|
|
88
88
|
- bin/setup
|
89
89
|
- irv.gemspec
|
90
90
|
- lib/irv.rb
|
91
|
-
- lib/irv/ballot.rb
|
92
91
|
- lib/irv/election.rb
|
93
92
|
- lib/irv/result.rb
|
94
93
|
- lib/irv/round.rb
|
@@ -105,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
105
104
|
requirements:
|
106
105
|
- - ">="
|
107
106
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
107
|
+
version: 2.4.0
|
109
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
109
|
requirements:
|
111
110
|
- - ">="
|
data/lib/irv/ballot.rb
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Irv
|
4
|
-
class Ballot
|
5
|
-
attr_reader :candidates, :ranked_candidates
|
6
|
-
|
7
|
-
def initialize(candidates)
|
8
|
-
@candidates = candidates
|
9
|
-
@ranked_candidates = []
|
10
|
-
end
|
11
|
-
|
12
|
-
def fill!(ranked_candidates)
|
13
|
-
unless correct_candidates?(ranked_candidates)
|
14
|
-
raise(
|
15
|
-
FillingWithIncorrectCandidatesError,
|
16
|
-
"Filling #{ranked_candidates}, but acceptable for only #{@candidates}"
|
17
|
-
)
|
18
|
-
end
|
19
|
-
|
20
|
-
@ranked_candidates = ranked_candidates
|
21
|
-
end
|
22
|
-
|
23
|
-
private
|
24
|
-
|
25
|
-
def correct_candidates?(ranked_candidates)
|
26
|
-
ranked_candidates.all? { |c| @candidates.include?(c) } &&
|
27
|
-
(ranked_candidates.count == ranked_candidates.uniq.count)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|