ttt_core 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9de364d16f1d9f538e89f5881b8251f8328e5a0a
4
- data.tar.gz: b2682af48104467da38486ce2035e1052baa4d8c
3
+ metadata.gz: 8fbed7725a43b262eb1a60e357de27285b9a56b9
4
+ data.tar.gz: ccfe28acb6f8c4e2a3145487c395b7dda7b4fdbd
5
5
  SHA512:
6
- metadata.gz: 0cfef1ce3120d38a2dcea2dedee53ed81b34a1595254fd12e65a540ed1ca5d33b809d37bf85a393a5b165c0c61a30f8bc374adaa372e512aec1b0bf3d63abe8a
7
- data.tar.gz: 88852086059968ca2ee9e64af9a63cea14f49293c555ea44a1c5bed7f84870a56bb42eec03432ed20c6b23745d9cfdd36f068aca31a01ab4e432bcad193fb5bd
6
+ metadata.gz: 892d2b51cd0908a50f06cda04739ca70d4ffc848c211ac4283cbd49bc46d8c97f288befe01d4f33dcd0719f673b7143da6b05c4e76b37f93b152ef722d1f61f9
7
+ data.tar.gz: db03bb526d26da0330766d67a5128974c3f141bc31d4f736a428e5a56c23476b0feb2fba2cc471f3cd38ece33e7a9df6f9674dad963ce28f9f1f18a563ec86ee
@@ -1,3 +1,3 @@
1
1
  module TttCore
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -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 = "The core classes of a Tic Tac Toe game"
13
- spec.description = "You can build a Tic Tac Toe game off of these classes"
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.3.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: You can build a Tic Tac Toe game off of these classes
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: The core classes of a Tic Tac Toe game
102
+ summary: Core Tic Tac Toe files to be used with a front end
102
103
  test_files: []