PlayRockPaperScissorsGame 2.1.7 → 2.1.8

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: 9431b99001a5da8a2c2a2a410b80560df010ec53
4
- data.tar.gz: 20fae8abd9fd9b27b01ac4d5cb1fdca209a60b43
3
+ metadata.gz: d186148eccdaa4543737a780e2d87206692c505e
4
+ data.tar.gz: c3787e6306527bc33a49616d625a5d76f9446334
5
5
  SHA512:
6
- metadata.gz: b678397f569281db5e94b5e36563c04d1ac48245f4bb282baa24391b53bdcb802e34feb95ea6b6175cb132b93485bb1d9fd6e2ef451c0450cd6238d2146a8d0a
7
- data.tar.gz: af202fcfafd07e6f4f4e63ff3922c283d5646895104080ad148b19e47579b6c43339aae5468f762bc6724035cdfda20fd7396f83808c242838a936c592b702df
6
+ metadata.gz: '09c715d183d1806e5e7cdd420eace0fccbf0d3c9688b8627435dca6c458850d7fe45814a456354233e48b76c9a1fe1c92ae77e192ef195f4430e0381753d5e53'
7
+ data.tar.gz: 885359952e78a4524c9aa107e737db4dd2deae0dc11315f8d60b67242d1eb4986c0bcb60ad3d1e18db521a7c7ed47e59e04d61e4a13a5577daddd1430e5265d1
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/Rakefile CHANGED
@@ -1,5 +1,4 @@
1
1
  require 'rdoc/task'
2
- require 'rake/testtask'
3
2
 
4
3
  task :default => [:PlayRockPaperScissorsGame, :rps]
5
4
 
data/lib/rps/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module PlayRockPaperScissorsGame
2
- VERSION = "2.1.7"
2
+ VERSION = "2.1.8"
3
3
  end
@@ -0,0 +1,23 @@
1
+ = How to Test
2
+
3
+ Here is the following code for Rake testing
4
+
5
+ % Rakefile
6
+
7
+ task :default => [:test, :PlayRockPaperScissorsGame, :rps]
8
+
9
+ file_path = "./test/test_rps.rb"
10
+
11
+ task :test do
12
+ ruby file_path
13
+ end
14
+
15
+ task :PlayRockPaperScissorsGame do
16
+ ruby file_path
17
+ end
18
+
19
+ task :rps do
20
+ ruby file_path
21
+ end
22
+
23
+ Meaning that you could techincally do `rake test`, `rake PlayRockPaperScissorsGame`, or `rake rps` to test.
data/rps.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "PlayRockPaperScissorsGame"
3
- spec.version = "2.1.7"
3
+ spec.version = "2.1.8"
4
4
  spec.date = "2017-04-03"
5
5
  spec.summary = "A Rock Paper Scissors Ruby Gem"
6
6
  spec.description = <<-EOF
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.homepage = "https://bag3318.github.io/RockPaperScissors/"
20
20
  spec.required_ruby_version = ">= 2.0.0"
21
21
  spec.required_rubygems_version = ">= 2.6.0"
22
- spec.extra_rdoc_files = "README.md"
22
+ spec.extra_rdoc_files = ["README.md", "rdocs/How_to_Test.rdoc"]
23
23
  spec.cert_chain = ["certs/gem-public_cert.pem"]
24
24
  spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
25
25
  spec.bindir = "bin"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: PlayRockPaperScissorsGame
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.7
4
+ version: 2.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318
@@ -112,6 +112,7 @@ executables:
112
112
  extensions: []
113
113
  extra_rdoc_files:
114
114
  - README.md
115
+ - rdocs/How_to_Test.rdoc
115
116
  files:
116
117
  - ".gitignore"
117
118
  - Gemfile
@@ -158,6 +159,7 @@ files:
158
159
  - lib/ref/PrivateMethods.rb
159
160
  - lib/rps.rb
160
161
  - lib/rps/version.rb
162
+ - rdocs/How_to_Test.rdoc
161
163
  - rps.gemspec
162
164
  - test/test_rps.rb
163
165
  homepage: https://bag3318.github.io/RockPaperScissors/
metadata.gz.sig CHANGED
Binary file