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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Rakefile +0 -1
- data/lib/rps/version.rb +1 -1
- data/rdocs/How_to_Test.rdoc +23 -0
- data/rps.gemspec +2 -2
- metadata +3 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d186148eccdaa4543737a780e2d87206692c505e
|
4
|
+
data.tar.gz: c3787e6306527bc33a49616d625a5d76f9446334
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/lib/rps/version.rb
CHANGED
@@ -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.
|
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.
|
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
|