cnnct4 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: 363606068c9689a8d4d83de1c88ec11ab708709c4fa62c0c91ebf2e0649f4b9e
4
- data.tar.gz: 57a2aa44535326e55e547500771ac0354009b4bb1b3984c5c6e3abb222847ac0
3
+ metadata.gz: f971f8cd6ef5a323c7c4beec7c3a0599b4140a8da25c5232f7600b7bcbace832
4
+ data.tar.gz: 277566ea1daee94bc86eef78a43508a10147394bf48c8afcaa3ef63d39e8999b
5
5
  SHA512:
6
- metadata.gz: 1d0f918cb97449beec87502501e30d2bbc8c6b365711bd017d769ac2dad38868380b5de736e5b14e4838addde8c32078b5bc333e5f638d4ab8c8a1ab4f45d507
7
- data.tar.gz: 30778a4c2b72b780420311622d6dd67bc0bed3e7ff93a5f6989143e87b10b7ffcc86a501ab4fa26021fb99de88280443c99bca96c96e2226f0c7ffc2014af3b3
6
+ metadata.gz: c8bfa99e96e43a52f6ef298a0f78a6f2d9165fb682ca526f40df2c610bcd109775d07ca8d380648188147e4f42e4cd1123d97b7950ab32c25e9b5210034ba993
7
+ data.tar.gz: '08a05afd5bf4dee0260b76af359e549a73f7d030ae693a5b4c59b33f840a368b88bdeffe8cc3f48d5ac8f5af0a729a8cb008e91226c23dd67a7c22c5fb2c8486'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cnnct4 (0.1.0)
4
+ cnnct4 (0.1.1)
5
5
  thor
6
6
 
7
7
  GEM
data/cnnct4.gemspec CHANGED
@@ -5,8 +5,8 @@ require_relative "lib/cnnct4/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "cnnct4"
7
7
  spec.version = Cnnct4::VERSION
8
- spec.authors = ["Reid Miller"]
9
- spec.email = ["reid.s.miller@gmail.com"]
8
+ spec.authors = ["Reid Miller", "Thomas Hawley"]
9
+ spec.email = ["reid.s.miller@gmail.com", "tchawley2@gmail.com"]
10
10
 
11
11
  spec.summary = "Thomas and Reid's Connect 4 game."
12
12
  spec.description = "A CLI connect 4 game playable by 1 or 2 players"
data/lib/cnnct4/game.rb CHANGED
@@ -95,7 +95,6 @@ class Game
95
95
  end
96
96
  if cell_down[0]&.mark != "."
97
97
  @board.place(cell_row[dot_pos].column_pos, "O")
98
-
99
98
  throw(:done, true)
100
99
  end
101
100
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cnnct4
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cnnct4
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
  - Reid Miller
8
+ - Thomas Hawley
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
@@ -55,6 +56,7 @@ dependencies:
55
56
  description: A CLI connect 4 game playable by 1 or 2 players
56
57
  email:
57
58
  - reid.s.miller@gmail.com
59
+ - tchawley2@gmail.com
58
60
  executables:
59
61
  - cnnct4
60
62
  extensions: []