PlayRockPaperScissorsGame 2.3.2 → 2.3.3
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 +3 -3
- metadata +3 -2
- 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: 7f0fa78eac52c58a0745abf70f2b557ef577494e
|
|
4
|
+
data.tar.gz: d8d209d30dc521e5ffcbf790fdb65bd9852d91b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2079ea5d51fc2e7cebcb9ca1ed627d7a7979ac71346be3b1aec8f1f423a47d1bb3cb7a99cda3aa8bd55c1ca7c291466601e6abb37a7e61a711ba292f81df9fba
|
|
7
|
+
data.tar.gz: 04e8d19a1aec130d3553c2e9947c07b86c6e4e69aa0c1b0661ca285bf3ebd8c8af05328b5c9242a398a86eb414589722d3b227ed85a6e9e00f24496719e5739a
|
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.3.
|
|
3
|
+
spec.version = "2.3.3"
|
|
4
4
|
spec.date = "2017-04-05"
|
|
5
5
|
spec.summary = "A Rock Paper Scissors Ruby Gem"
|
|
6
6
|
spec.description = <<-EOF
|
|
@@ -11,14 +11,14 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.platform = Gem::Platform::RUBY
|
|
12
12
|
spec.require_paths = ["lib"]
|
|
13
13
|
spec.files = `git ls-files -z`.split("\x0")
|
|
14
|
-
spec.test_files = ["test/test_rps.rb"]
|
|
14
|
+
spec.test_files = ["./test/test_rps.rb"]
|
|
15
15
|
spec.post_install_message = "Thanks for installing! I hope you have fun playing rock paper scissors! :)"
|
|
16
16
|
spec.license = "MIT"
|
|
17
17
|
spec.homepage = "https://bag3318.github.io/RockPaperScissors/"
|
|
18
18
|
spec.required_ruby_version = ">= 2.0.0"
|
|
19
19
|
spec.required_rubygems_version = ">= 2.6.0"
|
|
20
20
|
spec.extra_rdoc_files = "README.md"
|
|
21
|
-
spec.cert_chain = ["certs/gem-public_cert.pem"]
|
|
21
|
+
spec.cert_chain = ["./certs/gem-public_cert.pem"]
|
|
22
22
|
spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
|
|
23
23
|
spec.bindir = "bin"
|
|
24
24
|
spec.executables << "rps"
|
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.3.
|
|
4
|
+
version: 2.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bag3318
|
|
@@ -112,6 +112,7 @@ extensions: []
|
|
|
112
112
|
extra_rdoc_files:
|
|
113
113
|
- README.md
|
|
114
114
|
files:
|
|
115
|
+
- "./test/test_rps.rb"
|
|
115
116
|
- ".gitignore"
|
|
116
117
|
- Gemfile
|
|
117
118
|
- LICENSE
|
|
@@ -190,4 +191,4 @@ signing_key:
|
|
|
190
191
|
specification_version: 4
|
|
191
192
|
summary: A Rock Paper Scissors Ruby Gem
|
|
192
193
|
test_files:
|
|
193
|
-
- test/test_rps.rb
|
|
194
|
+
- "./test/test_rps.rb"
|
metadata.gz.sig
CHANGED
|
Binary file
|