cnnct4 0.0.0 → 0.0.1

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
  SHA256:
3
- metadata.gz: 3f335181b60c748723b4d06e9513f5191b592bace4fa8e7cac6dcf6300cd5b33
4
- data.tar.gz: 850a2db9a7d9622e3adfb123f6f55af959f026964780c2e8fcd4aad405d44cdb
3
+ metadata.gz: 18acb8b810dae3fe6c06643688995e5a710057226b4d3086e062cdbc1a995063
4
+ data.tar.gz: 0e41015987b4b2b03ced04ed37b2ea04c89e5b0772824e2fa36fccaa3c4620fe
5
5
  SHA512:
6
- metadata.gz: 3e71c0a8e1325e9886a37da63fb6ccb6285724d41e49659604a8b1f1f5f262df78e7ede5fc343930a45e147a407f7c909d1fdec0648ddf344656da1a3553175f
7
- data.tar.gz: 01fb0039a18ab0f0099c9e9f67b742e63f02c5b6b663536263a277c0a0449ab7dab55436fc2241462d14a85ade3637feea80c832902924cfe145b459c5dd207a
6
+ metadata.gz: 569d45620763f463c3d488f25fd00117a2d1287fb2923a1ec24f116a33e3c721996462f15bd1f4ab5b005a271d232b6fcc52fc095b6690bd48a031a50be1d4af
7
+ data.tar.gz: 724da28d85b5f721966bd24a4c287a35a945d600104e8514aee536971561d46ef097bf86d284c613312cc854ae5592fa0f16397cf302d8c4118ab26fa6b83f91
data/Gemfile.lock ADDED
@@ -0,0 +1,36 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ cnnct4 (0.0.0)
5
+ thor
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ diff-lcs (1.5.0)
11
+ rake (13.0.6)
12
+ rspec (3.12.0)
13
+ rspec-core (~> 3.12.0)
14
+ rspec-expectations (~> 3.12.0)
15
+ rspec-mocks (~> 3.12.0)
16
+ rspec-core (3.12.1)
17
+ rspec-support (~> 3.12.0)
18
+ rspec-expectations (3.12.2)
19
+ diff-lcs (>= 1.2.0, < 2.0)
20
+ rspec-support (~> 3.12.0)
21
+ rspec-mocks (3.12.3)
22
+ diff-lcs (>= 1.2.0, < 2.0)
23
+ rspec-support (~> 3.12.0)
24
+ rspec-support (3.12.0)
25
+ thor (1.2.1)
26
+
27
+ PLATFORMS
28
+ x86_64-darwin-21
29
+
30
+ DEPENDENCIES
31
+ cnnct4!
32
+ rake (~> 13.0)
33
+ rspec (~> 3.0)
34
+
35
+ BUNDLED WITH
36
+ 2.4.5
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cnnct4
4
- VERSION = "0.0.0"
4
+ VERSION = "0.0.1"
5
5
  end
data/lib/cnnct4.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "cnnct4/version"
4
- require './lib/cnnct4/board'
5
- require './lib/cnnct4/game'
6
- require './lib/cnnct4/game_play'
7
- require './lib/cnnct4/playable'
4
+ require_relative 'cnnct4/board'
5
+ require_relative 'cnnct4/game'
6
+ require_relative 'cnnct4/game_play'
7
+ require_relative 'cnnct4/playable'
8
8
 
9
9
 
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cnnct4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reid Miller
@@ -48,6 +48,7 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - ".rspec"
50
50
  - Gemfile
51
+ - Gemfile.lock
51
52
  - LICENSE.txt
52
53
  - README.md
53
54
  - Rakefile