pszals_ttt 0.0.2 → 0.0.3

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. metadata +2 -4
  3. data/bin/tictactoe +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be576b75933b8ca0f6bc4a969d782eaf29188f1f
4
- data.tar.gz: 3880e0396f884a8ba7124e9b28f8d761626fc371
3
+ metadata.gz: 510a08c0e6be146dfc15750e550812705f7446ac
4
+ data.tar.gz: 19a57a1c2fd7803b6896a2b04f7c9e850444dd0f
5
5
  SHA512:
6
- metadata.gz: adce24e737637e1830cef1cdf5430587158b61c8bd868df0740677168ea6e56d407f67f19487162662cfd3e6295ae22a3423b28562877f8c46c68f56b63e5362
7
- data.tar.gz: b4203a30b2598f895b160a5fbe8429207e7d9e99d3e2d12400d3e2c859b783af8d634cd2ac465b2999df69a89dab62fe3667ea30f8d212487100cc2cda8498ae
6
+ metadata.gz: 30cd85d16e483308ec6ee8a07d05586f29bf50733149494cb4bb7d013417e34956fbc8f5a4e49873f02dbea7adc38f23d5b88321042c512e3ec0c0478dfd8f6f
7
+ data.tar.gz: 2888535be4c8d6ba72b4efe1af109cbec5bef567dc7dc3eadbdac5566e9415793a26ec1d7a3d24ddf4d2e1a3e81fac16d6d18bfbb7c194e59453980a349a5d70
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pszals_ttt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Szalwinski
@@ -12,8 +12,7 @@ date: 2013-07-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: my tic tac toe game engine
14
14
  email: pszalwinski@gmail.com
15
- executables:
16
- - tictactoe
15
+ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
@@ -24,7 +23,6 @@ files:
24
23
  - lib/player.rb
25
24
  - lib/runner.rb
26
25
  - lib/unbeatable_ai.rb
27
- - bin/tictactoe
28
26
  homepage:
29
27
  licenses: []
30
28
  metadata: {}
data/bin/tictactoe DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
3
- require 'runner'
4
- require 'console_ui'
5
- require 'pszals_ttt'
6
-
7
- Runner.new(Console_UI.new).call