djmh_rock_paper_scissors 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
  SHA1:
3
- metadata.gz: c21e104b798f609e5c63da31054777da899a6dc5
4
- data.tar.gz: 352aea4cfccbc4c3d5b63dbcb76ebf3e105a7ff2
3
+ metadata.gz: 1e90548a28a68a428ad7e046eb63343a571ba749
4
+ data.tar.gz: 9b5385c5cdb74b0e9f5b442527e04f39d34c1fa9
5
5
  SHA512:
6
- metadata.gz: 27e3b69aac76b8d4f1e7d5e527cd5935af7fddc6e3e39c804c84acdb6fd69bc87e6f76b085a1f087929a544910901d950d0e3aa059499510671889011938ec5f
7
- data.tar.gz: 60a8e416a65d8dbd7468f3079b2a28731834e63a5496d43cb0c2fc18eda4a4102ef907f28ccd276862ff9dab956def6ea2b405e274d28830c989292acb86c6f3
6
+ metadata.gz: deac92dfa3af76b96a5a74d632e7dc7a5a372d0934b503cc6f7a98fa4096a7ebeb4bb0245b67982de8ec3ed36f82b4645bbbdbf43256145c17c3b1d1449b127d
7
+ data.tar.gz: dcdd0ace4e9721c86e8bd899bb38b7917770c700260b3f38ccefce2a3b3dd2c68b81f3a68634fe2a717fe11c855e64ac65507292361df1e20bddb6a7045b738b
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require 'djmh_rock_paper_scissors'
3
+
4
+ DjmhRockPaperScissors::Game.new.play
@@ -5,6 +5,5 @@ require 'djmh_rock_paper_scissors/human'
5
5
  require 'djmh_rock_paper_scissors/computer'
6
6
 
7
7
  module DjmhRockPaperScissors
8
- game = DjmhRockPaperScissors::Game.new
9
- game.play
8
+
10
9
  end
@@ -1,3 +1,3 @@
1
1
  module DjmhRockPaperScissors
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: djmh_rock_paper_scissors
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
  - "“Matthew, David"
@@ -41,7 +41,8 @@ dependencies:
41
41
  description:
42
42
  email:
43
43
  - matthew.hinea@gmail.com, david.m.jiang.12@gmail.com
44
- executables: []
44
+ executables:
45
+ - djmh_rock_paper_scissors
45
46
  extensions: []
46
47
  extra_rdoc_files: []
47
48
  files:
@@ -53,6 +54,7 @@ files:
53
54
  - bin/console
54
55
  - bin/setup
55
56
  - djmh_rock_paper_scissors.gemspec
57
+ - exe/djmh_rock_paper_scissors
56
58
  - lib/djmh_rock_paper_scissors.rb
57
59
  - lib/djmh_rock_paper_scissors/computer.rb
58
60
  - lib/djmh_rock_paper_scissors/game.rb