irv 0.1.1 → 0.3.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 +14 -2
- data/.travis.yml +6 -1
- data/Gemfile.lock +42 -30
- data/README.md +9 -11
- data/irv.gemspec +4 -3
- data/lib/irv/election.rb +17 -6
- data/lib/irv/result.rb +2 -2
- data/lib/irv/round.rb +1 -1
- data/lib/irv/version.rb +1 -1
- data/lib/irv.rb +1 -1
- metadata +13 -14
- 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: e1c7dab221fc890b8f1554931888a15424b0681ef69067c659b667f761ece99b
|
4
|
+
data.tar.gz: 1c9586e673288fd6e05da683cd36221108feb9891d756325abde00950bf2d3f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d81a7d58cfd8c1b6c90ef749d31f0ff2d9ebfcb3d3a8ec3838f5d2b49b0f5fa123cbbc0667bef76a11e56f57c5bbef8d27e07b62636bdadc36f62fec21b03cf
|
7
|
+
data.tar.gz: 0dfa531db816393e1de5b29231a3755d1e70d9cb989d4c1c96be81adf189dc300088a536b6ababef10e6cab3e3795e70e776aaa43330fcde4dac1e912690bb28
|
data/.rubocop.yml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
2
|
+
TargetRubyVersion: 3.3
|
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
|
|
@@ -32,7 +44,7 @@ Metrics/ClassLength:
|
|
32
44
|
Metrics/CyclomaticComplexity:
|
33
45
|
Enabled: false
|
34
46
|
|
35
|
-
|
47
|
+
Layout/LineLength:
|
36
48
|
Enabled: false
|
37
49
|
|
38
50
|
Metrics/MethodLength:
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,51 +1,63 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
irv (0.
|
4
|
+
irv (0.3.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
ast (2.4.
|
10
|
-
diff-lcs (1.
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
9
|
+
ast (2.4.2)
|
10
|
+
diff-lcs (1.5.0)
|
11
|
+
json (2.7.1)
|
12
|
+
language_server-protocol (3.17.0.3)
|
13
|
+
parallel (1.24.0)
|
14
|
+
parser (3.3.0.2)
|
15
|
+
ast (~> 2.4.1)
|
16
|
+
racc
|
17
|
+
racc (1.7.3)
|
18
|
+
rainbow (3.1.1)
|
19
|
+
rake (13.1.0)
|
20
|
+
regexp_parser (2.9.0)
|
21
|
+
rexml (3.2.6)
|
22
|
+
rspec (3.12.0)
|
23
|
+
rspec-core (~> 3.12.0)
|
24
|
+
rspec-expectations (~> 3.12.0)
|
25
|
+
rspec-mocks (~> 3.12.0)
|
26
|
+
rspec-core (3.12.2)
|
27
|
+
rspec-support (~> 3.12.0)
|
28
|
+
rspec-expectations (3.12.3)
|
24
29
|
diff-lcs (>= 1.2.0, < 2.0)
|
25
|
-
rspec-support (~> 3.
|
26
|
-
rspec-mocks (3.
|
30
|
+
rspec-support (~> 3.12.0)
|
31
|
+
rspec-mocks (3.12.6)
|
27
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
-
rspec-support (~> 3.
|
29
|
-
rspec-support (3.
|
30
|
-
rubocop (
|
31
|
-
|
33
|
+
rspec-support (~> 3.12.0)
|
34
|
+
rspec-support (3.12.1)
|
35
|
+
rubocop (1.59.0)
|
36
|
+
json (~> 2.3)
|
37
|
+
language_server-protocol (>= 3.17.0)
|
32
38
|
parallel (~> 1.10)
|
33
|
-
parser (>= 2.
|
39
|
+
parser (>= 3.2.2.4)
|
34
40
|
rainbow (>= 2.2.2, < 4.0)
|
41
|
+
regexp_parser (>= 1.8, < 3.0)
|
42
|
+
rexml (>= 3.2.5, < 4.0)
|
43
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
35
44
|
ruby-progressbar (~> 1.7)
|
36
|
-
unicode-display_width (>=
|
37
|
-
|
38
|
-
|
45
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
46
|
+
rubocop-ast (1.30.0)
|
47
|
+
parser (>= 3.2.1.0)
|
48
|
+
ruby-progressbar (1.13.0)
|
49
|
+
unicode-display_width (2.5.0)
|
39
50
|
|
40
51
|
PLATFORMS
|
41
52
|
ruby
|
53
|
+
x86_64-darwin-22
|
42
54
|
|
43
55
|
DEPENDENCIES
|
44
|
-
bundler (~>
|
56
|
+
bundler (~> 2.4)
|
45
57
|
irv!
|
46
|
-
rake (~>
|
58
|
+
rake (~> 13.0)
|
47
59
|
rspec (~> 3.0)
|
48
|
-
rubocop (~>
|
60
|
+
rubocop (~> 1.59.0)
|
49
61
|
|
50
62
|
BUNDLED WITH
|
51
|
-
|
63
|
+
2.5.4
|
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 = '>= 3.3.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.
|
@@ -24,8 +25,8 @@ Gem::Specification.new do |spec|
|
|
24
25
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
26
|
spec.require_paths = ['lib']
|
26
27
|
|
27
|
-
spec.add_development_dependency 'bundler', '~>
|
28
|
-
spec.add_development_dependency 'rake', '~>
|
28
|
+
spec.add_development_dependency 'bundler', '~> 2.4'
|
29
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
29
30
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
30
|
-
spec.add_development_dependency 'rubocop', '~>
|
31
|
+
spec.add_development_dependency 'rubocop', '~> 1.59.0'
|
31
32
|
end
|
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,9 +9,9 @@ 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.times do
|
15
15
|
@process << round
|
16
16
|
break if round.exist_majority?
|
17
17
|
|
data/lib/irv/round.rb
CHANGED
data/lib/irv/version.rb
CHANGED
data/lib/irv.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.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- highwide
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.4'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '13.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '13.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 1.59.0
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 1.59.0
|
69
69
|
description: Instant-runoff Voting is a type of ranked preferential voting method.
|
70
70
|
This gem makes it enable Ruby program.
|
71
71
|
email:
|
@@ -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
|
@@ -97,7 +96,7 @@ homepage: https://github.com/highwide/irv
|
|
97
96
|
licenses:
|
98
97
|
- MIT
|
99
98
|
metadata: {}
|
100
|
-
post_install_message:
|
99
|
+
post_install_message:
|
101
100
|
rdoc_options: []
|
102
101
|
require_paths:
|
103
102
|
- lib
|
@@ -105,15 +104,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
105
104
|
requirements:
|
106
105
|
- - ">="
|
107
106
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
107
|
+
version: 3.3.0
|
109
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
109
|
requirements:
|
111
110
|
- - ">="
|
112
111
|
- !ruby/object:Gem::Version
|
113
112
|
version: '0'
|
114
113
|
requirements: []
|
115
|
-
rubygems_version: 3.
|
116
|
-
signing_key:
|
114
|
+
rubygems_version: 3.5.3
|
115
|
+
signing_key:
|
117
116
|
specification_version: 4
|
118
117
|
summary: Providing a Instant-runoff Voting.
|
119
118
|
test_files: []
|
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
|