PlayRockPaperScissorsGame 1.6.6 → 1.6.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/rps.gemspec +3 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d478fc25a61b60006d4d4b50a430bb8d0634d7f2
|
4
|
+
data.tar.gz: 1139dd6c107525a898e745eec09b06b812d7ed65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 582c111e5bc6f865320c711f526a71cf6414093722ade73345dc2c799d921b1bb4187d1d5651ca2ee34aacd7be3d6a6e3d676263ccfacc0743ccd1cacfdc7d21
|
7
|
+
data.tar.gz: 7fb32067630e6a3b9221a360838e2da1c1ef282898cf9be1926d75ca26c3da7ea683744856d172eb9eb4f6484343ba73d21bd7ed04ffa64eb069dc4015af1968
|
data/rps.gemspec
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
3
|
-
spec.version = "1.6.
|
3
|
+
spec.version = "1.6.7"
|
4
4
|
spec.date = "2017-04-01"
|
5
5
|
spec.summary = "A Rock Paper Scissors Ruby Gem"
|
6
6
|
spec.description = "A Ruby-programmed rock paper scissors game. To install: gem install PlayRockPaperScissorsGame; To run: rps; or: PlayRockPaperScissorsGame; For issues: https://github.com/bag3318/RockPaperScissors/issues"
|
7
7
|
spec.author = "bag3318"
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
9
|
spec.require_paths = ["lib", "lib/ref", "test", "exec", "bin"]
|
10
|
-
spec.files = ["lib/rps.rb", "lib/ref/PrivateMethods.rb", "lib/ref/Constants.rb", "
|
10
|
+
spec.files = ["lib/rps.rb", "lib/ref/PrivateMethods.rb", "lib/ref/Constants.rb", "exec/run.bat", "exec/rps.bash", "exec/uninstall.sh", "rps.gemspec", "Rakefile", "Gemfile", "LICENSE", "README.md"]
|
11
|
+
spec.test_files = ["test/test_rps.rb"]
|
11
12
|
spec.bindir = "bin"
|
12
13
|
spec.executables << "rps"
|
13
14
|
spec.executables << "PlayRockPaperScissorsGame"
|
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: 1.6.
|
4
|
+
version: 1.6.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bag3318
|
@@ -123,4 +123,5 @@ rubygems_version: 2.6.11
|
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: A Rock Paper Scissors Ruby Gem
|
126
|
-
test_files:
|
126
|
+
test_files:
|
127
|
+
- test/test_rps.rb
|