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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8a99789b0cbe5756c7d1dfd5666e9096102c748a82dc51c8b032f8c9667fe94
4
- data.tar.gz: bf4f6f58576731266a3d825a7bdb910ec1ddd7b355f39f3647bd40262d1f0a01
3
+ metadata.gz: '094a4e98ba00996613d8394a7a784c5e42452ccec63ca480f8f0bbd1e23923ff'
4
+ data.tar.gz: e8303a420c2e50c800a8b42cb99e86d3e93a74e6e5d4bae6066d3dcc916304c9
5
5
  SHA512:
6
- metadata.gz: c4e2ec30b5492857c20edc92587e62f81c0720d0c20005b7c3e1537e82d3d01b865393601fc567b8be517df25d70b25000721c0757ef8b6bdf8c1f31462bd934
7
- data.tar.gz: 3125e2cf89fda760e11bc0102feec0411f08d58c16e9d0e5e73e4e633ba30f8200481562f5df071118d632948e0029de7acf3838f76a2e38f762744f3d7a047e
6
+ metadata.gz: 0ded7eb4aef961ae5e4a5a29bc7b5689ce5b3ae115b072272450e8dca849472164bb94daaed81dbc88dfd27550357814a79882fab9cd64639a9a69450577ab54
7
+ data.tar.gz: 5154140b71dcd1b5611ee95eb430f080317d96d1fe13c65b42ee22fb5aef7e21507a80d3107a534507f7315955aa0ef0f5c004aa82be36d90754dde935606a15
@@ -1,7 +1,15 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.6.3
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
 
@@ -3,5 +3,10 @@ sudo: false
3
3
  language: ruby
4
4
  cache: bundler
5
5
  rvm:
6
- - 2.6.3
6
+ - 2.4
7
+ - 2.5
8
+ - 2.6
7
9
  before_install: gem install bundler -v 1.17.2
10
+ script:
11
+ - bundle exec rubocop
12
+ - bundle exec rake spec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- irv (0.1.1)
4
+ irv (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # Irv
2
+ [![Gem Version](https://badge.fury.io/rb/irv.svg)](https://badge.fury.io/rb/irv)
3
+ [![Build Status](https://travis-ci.org/highwide/irv.svg?branch=master)](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
- 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) }
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...
@@ -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
@@ -10,5 +10,5 @@ module Irv
10
10
  Election.new(candidates)
11
11
  end
12
12
 
13
- class FillingWithIncorrectCandidatesError < StandardError; end
13
+ class PollingWithIncorrectCandidatesError < StandardError; end
14
14
  end
@@ -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 issue_ballot
16
- Ballot.new(@candidates)
17
- end
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
- def poll!(ballot)
20
- @ballots << ballot
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
@@ -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.map(&:ranked_candidates))
12
+ round = Round.new(round_order, candidates, ballots)
13
13
 
14
14
  (candidates.count - 1).times do
15
15
  @process << round
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Irv
4
- VERSION = '0.1.1'
4
+ VERSION = '0.2.0'
5
5
  end
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.1
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-06-24 00:00:00.000000000 Z
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: '0'
107
+ version: 2.4.0
109
108
  required_rubygems_version: !ruby/object:Gem::Requirement
110
109
  requirements:
111
110
  - - ">="
@@ -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