PlayRockPaperScissorsGame 2.1.8 → 2.1.9
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +2 -2
- metadata +1 -3
- metadata.gz.sig +0 -0
- data/rdocs/How_to_Test.rdoc +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7307c979fb65f90fd918a7ca4d9cdd4adaea3dc
|
|
4
|
+
data.tar.gz: 55ee2085d8b9854ca5d5b72d5941e423eb64f4e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c57ae13d9e0e4f5f98eba4d7294b5c5b462adb399b40e7eba821e210574d718f0eaecb55965a6023e60fa4cb60fb1892b7ba75083e0672372df3188e17d8d70b
|
|
7
|
+
data.tar.gz: 1aca6cbeeaaec16e1c9ced51caeae45b4330cd6908b456843083c66732f0088642a210f37c399764cb8232def22c3e074a0421fb7946feaedd65d82c38fc29e7
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/lib/rps/version.rb
CHANGED
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.9"
|
|
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 =
|
|
22
|
+
spec.extra_rdoc_files = "README.md"
|
|
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.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bag3318
|
|
@@ -112,7 +112,6 @@ executables:
|
|
|
112
112
|
extensions: []
|
|
113
113
|
extra_rdoc_files:
|
|
114
114
|
- README.md
|
|
115
|
-
- rdocs/How_to_Test.rdoc
|
|
116
115
|
files:
|
|
117
116
|
- ".gitignore"
|
|
118
117
|
- Gemfile
|
|
@@ -159,7 +158,6 @@ files:
|
|
|
159
158
|
- lib/ref/PrivateMethods.rb
|
|
160
159
|
- lib/rps.rb
|
|
161
160
|
- lib/rps/version.rb
|
|
162
|
-
- rdocs/How_to_Test.rdoc
|
|
163
161
|
- rps.gemspec
|
|
164
162
|
- test/test_rps.rb
|
|
165
163
|
homepage: https://bag3318.github.io/RockPaperScissors/
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/rdocs/How_to_Test.rdoc
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
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.
|