ttt_core 0.3.0 → 0.4.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 +4 -4
- data/lib/ttt_core/version.rb +1 -1
- data/ttt_core.gemspec +3 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8fbed7725a43b262eb1a60e357de27285b9a56b9
|
|
4
|
+
data.tar.gz: ccfe28acb6f8c4e2a3145487c395b7dda7b4fdbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 892d2b51cd0908a50f06cda04739ca70d4ffc848c211ac4283cbd49bc46d8c97f288befe01d4f33dcd0719f673b7143da6b05c4e76b37f93b152ef722d1f61f9
|
|
7
|
+
data.tar.gz: db03bb526d26da0330766d67a5128974c3f141bc31d4f736a428e5a56c23476b0feb2fba2cc471f3cd38ece33e7a9df6f9674dad963ce28f9f1f18a563ec86ee
|
data/lib/ttt_core/version.rb
CHANGED
data/ttt_core.gemspec
CHANGED
|
@@ -9,8 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Dan Pelensky"]
|
|
10
10
|
spec.email = ["dan@pelensky.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = "
|
|
13
|
-
spec.description = "
|
|
12
|
+
spec.summary = "Core Tic Tac Toe files to be used with a front end"
|
|
13
|
+
spec.description = "This is the core logic of a Tic Tac Toe game. Create a front end, and a human player (if required) and you are good to go."
|
|
14
|
+
spec.homepage = "https://github.com/pelensky/ttt_core"
|
|
14
15
|
spec.license = "MIT"
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ttt_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Pelensky
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: This is the core logic of a Tic Tac Toe game. Create a front end, and
|
|
56
|
+
a human player (if required) and you are good to go.
|
|
56
57
|
email:
|
|
57
58
|
- dan@pelensky.com
|
|
58
59
|
executables: []
|
|
@@ -75,7 +76,7 @@ files:
|
|
|
75
76
|
- lib/simple_computer.rb
|
|
76
77
|
- lib/ttt_core/version.rb
|
|
77
78
|
- ttt_core.gemspec
|
|
78
|
-
homepage:
|
|
79
|
+
homepage: https://github.com/pelensky/ttt_core
|
|
79
80
|
licenses:
|
|
80
81
|
- MIT
|
|
81
82
|
metadata: {}
|
|
@@ -98,5 +99,5 @@ rubyforge_project:
|
|
|
98
99
|
rubygems_version: 2.6.10
|
|
99
100
|
signing_key:
|
|
100
101
|
specification_version: 4
|
|
101
|
-
summary:
|
|
102
|
+
summary: Core Tic Tac Toe files to be used with a front end
|
|
102
103
|
test_files: []
|