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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fe22d8d2db89a748b5dc0c9452b40aa714307b835d5b9202b0241475f1cd785
4
- data.tar.gz: fa5fade892d5ad2cc30e400d7c2246de1c4fa1c28bf1f0f59de74b6aa944774c
3
+ metadata.gz: b8a99789b0cbe5756c7d1dfd5666e9096102c748a82dc51c8b032f8c9667fe94
4
+ data.tar.gz: bf4f6f58576731266a3d825a7bdb910ec1ddd7b355f39f3647bd40262d1f0a01
5
5
  SHA512:
6
- metadata.gz: 27986dd0a0d5d445dff7d07bb3477d81c964838a7c5fa02ab2029e55a19acb8f4700d194936cdc3ac96fac005f9186e31ba332f0a108eeb8bfdeef6a83eb36b9
7
- data.tar.gz: 01a026b38a4c84cad76181d8c0934e637d7852092766f27befaa786edb7c0d71f6226fd740d56bbc75662a69ae83eee5830ce819da2d5293f9a3ec46a9eb8fd5
6
+ metadata.gz: c4e2ec30b5492857c20edc92587e62f81c0720d0c20005b7c3e1537e82d3d01b865393601fc567b8be517df25d70b25000721c0757ef8b6bdf8c1f31462bd934
7
+ data.tar.gz: 3125e2cf89fda760e11bc0102feec0411f08d58c16e9d0e5e73e4e633ba30f8200481562f5df071118d632948e0029de7acf3838f76a2e38f762744f3d7a047e
data/Gemfile CHANGED
@@ -1,6 +1,8 @@
1
- source "https://rubygems.org"
1
+ # frozen_string_literal: true
2
2
 
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- irv (0.1.0)
4
+ irv (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Irv
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/irv`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
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
@@ -5,4 +5,4 @@ require 'rspec/core/rake_task'
5
5
 
6
6
  RSpec::Core::RakeTask.new(:spec)
7
7
 
8
- task :default => :spec
8
+ task default: :spec
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
- require "bundler/setup"
4
- require "irv"
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 "irb"
14
+ require 'irb'
14
15
  IRB.start(__FILE__)
@@ -1,30 +1,31 @@
1
+ # frozen_string_literal: true
1
2
 
2
- lib = File.expand_path("../lib", __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "irv/version"
5
+ require 'irv/version'
5
6
 
6
7
  Gem::Specification.new do |spec|
7
- spec.name = "irv"
8
+ spec.name = 'irv'
8
9
  spec.version = Irv::VERSION
9
- spec.authors = ["highwide"]
10
- spec.email = ["hochweit728@gmail.com"]
10
+ spec.authors = ['highwide']
11
+ spec.email = ['hochweit728@gmail.com']
11
12
 
12
- spec.summary = %q{Providing a Instant-runoff Voting.}
13
- spec.description = %q{Instant-runoff Voting is a type of ranked preferential voting method. This gem makes it enable Ruby program.}
14
- spec.homepage = "https://github.com/highwide/irv"
15
- spec.license = "MIT"
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('..', __FILE__)) do
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 = "exe"
23
+ spec.bindir = 'exe'
23
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
- spec.require_paths = ["lib"]
25
+ spec.require_paths = ['lib']
25
26
 
26
- spec.add_development_dependency "bundler", "~> 1.17"
27
- spec.add_development_dependency "rake", "~> 10.0"
28
- spec.add_development_dependency "rspec", "~> 3.0"
29
- spec.add_development_dependency "rubocop", '~> 0.71.0'
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
@@ -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
- while !round.exist_majority?
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Irv
4
4
  class Round
5
- attr_reader :order, :majority, :loser
5
+ attr_reader :order, :tallied_votes, :majority, :loser
6
6
 
7
7
  def initialize(order, candidates, votes)
8
8
  @order = order
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Irv
4
- VERSION = "0.1.0"
4
+ VERSION = '0.1.1'
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.0
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-23 00:00:00.000000000 Z
11
+ date: 2019-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler