PlayRockPaperScissorsGame 2.1.8 → 2.1.9

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: d186148eccdaa4543737a780e2d87206692c505e
4
- data.tar.gz: c3787e6306527bc33a49616d625a5d76f9446334
3
+ metadata.gz: b7307c979fb65f90fd918a7ca4d9cdd4adaea3dc
4
+ data.tar.gz: 55ee2085d8b9854ca5d5b72d5941e423eb64f4e8
5
5
  SHA512:
6
- metadata.gz: '09c715d183d1806e5e7cdd420eace0fccbf0d3c9688b8627435dca6c458850d7fe45814a456354233e48b76c9a1fe1c92ae77e192ef195f4430e0381753d5e53'
7
- data.tar.gz: 885359952e78a4524c9aa107e737db4dd2deae0dc11315f8d60b67242d1eb4986c0bcb60ad3d1e18db521a7c7ed47e59e04d61e4a13a5577daddd1430e5265d1
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
@@ -1,3 +1,3 @@
1
1
  module PlayRockPaperScissorsGame
2
- VERSION = "2.1.8"
2
+ VERSION = "2.1.9"
3
3
  end
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.8"
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 = ["README.md", "rdocs/How_to_Test.rdoc"]
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.8
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
@@ -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.