RPSrb 0.0.8 → 0.0.9

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
  SHA1:
3
- metadata.gz: 7b525e20784cbb678c916fc580bcdd3dbd4092ea
4
- data.tar.gz: 7a2d7474b3a45c8c72b29cd793c8a4fe4963128c
3
+ metadata.gz: 9c588e87d5578e52678f8c8d9eba937afc42e756
4
+ data.tar.gz: b8e4cc4dce52dc2152930ce02a8a315f546fc468
5
5
  SHA512:
6
- metadata.gz: f8e3088ee05f4186b6676f13e54b52f932fdb2ac4bf785b142bbed20800f24dae9f2fa7e4f8e6dac5a23e1240b074d5bf7a87d111638e3816001a0020215740d
7
- data.tar.gz: 918d2ee609c2db7a427f737730ee0b8b9fe0d92495d49815205e92b5676f3521a087565ba21721181cc3fb26dc65ce8ec33d90c15308d54b46339e98c9921af4
6
+ metadata.gz: ba940780e6e22a57c71e5d9eee0964b3a13f32b20804904e15bc8ca7f6527acecf8b552291a1df146df12eb1a08780e8d2f98e82c63f358312525e63085f659d
7
+ data.tar.gz: 850cb4fe2874a07bf273ab93c2c17e4bd858d4ef0d1930a71cc4de2c99874752695cced5b808985aeb1ed417be8a58abe2db001c80fa32fc467669f553b0e3ee
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "RPSrb"
3
- spec.version = "0.0.8"
3
+ spec.version = "0.0.9"
4
4
  spec.date = "2017-12-12" # format: YYYY/MM/DD
5
5
  spec.summary = "A Rock Paper Scissors Game RubyGem"
6
6
  spec.description = <<-EOF
@@ -278,9 +278,9 @@
278
278
  <span class="ruby-identifier">printf</span> <span class="ruby-string">&quot;\nFinal score:\nplayer: %i, computer: %i; (ties: %i).\n\n&quot;</span> <span class="ruby-operator">%</span> [<span class="ruby-ivar">@player_score</span>, <span class="ruby-ivar">@computer_score</span>, <span class="ruby-ivar">@ties</span>]
279
279
  <span class="ruby-keyword">case</span> <span class="ruby-identifier">final_outcome</span>(<span class="ruby-ivar">@player_score</span>, <span class="ruby-ivar">@computer_score</span>)
280
280
  <span class="ruby-keyword">when</span> <span class="ruby-value">:WIN</span>
281
- <span class="ruby-identifier">puts</span> <span class="ruby-string">&quot;\nPlayer wins!\n&quot;</span>
281
+ <span class="ruby-identifier">puts</span> <span class="ruby-string">&quot;Player wins!\n&quot;</span>
282
282
  <span class="ruby-keyword">when</span> <span class="ruby-value">:LOSE</span>
283
- <span class="ruby-identifier">puts</span> <span class="ruby-string">&quot;\nComputer wins!\n&quot;</span>
283
+ <span class="ruby-identifier">puts</span> <span class="ruby-string">&quot;Computer wins!\n&quot;</span>
284
284
  <span class="ruby-keyword">end</span>
285
285
  <span class="ruby-identifier">print</span> <span class="ruby-string">&quot;\n[press the enter/return key to exit game]&quot;</span>
286
286
  <span class="ruby-identifier">gets</span>
@@ -1,4 +1,4 @@
1
- Mon, 11 Dec 2017 17:31:24 -0800
1
+ Tue, 12 Dec 2017 09:46:51 -0800
2
2
  lib/exec.rb Mon, 11 Dec 2017 12:15:28 -0800
3
- lib/RockPaperScissors.rb Mon, 11 Dec 2017 16:58:47 -0800
4
- lib/RPSrb/Version.rb Mon, 11 Dec 2017 17:31:12 -0800
3
+ lib/RockPaperScissors.rb Tue, 12 Dec 2017 09:41:20 -0800
4
+ lib/RPSrb/Version.rb Tue, 12 Dec 2017 09:46:02 -0800
Binary file
Binary file
Binary file
@@ -1,4 +1,4 @@
1
1
  # version constant for RubyGem
2
2
  module RPSrb
3
- VERSION = '0.0.8'
3
+ VERSION = '0.0.9'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RPSrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318