PlayRockPaperScissorsGame 1.7.2 → 1.7.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
- data/.gitignore +5 -0
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +3 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f720e2c442cb0ac988fa41f46941db0b0a3290f4
|
4
|
+
data.tar.gz: eed0321a0f3073909de6fe0c925e0c5309d59fbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 381771cd9ae8a77e36f235f9b83e0407aba21139e98ef743ef1ebbf038449b5948217537c8a0107882b223f96830d5ce7c6df6fbb3b694a5bd0540602c8a87e2
|
7
|
+
data.tar.gz: 5a8d6d8a395102098d92cfa2c2581f59e50c207dc7b12d9fd8a291980be8ec950ac5ec41f560f62cc5951e1eebcdab857d654ec7a61cba7b586b9c291ab13c45
|
data/.gitignore
ADDED
data/lib/rps/version.rb
CHANGED
data/rps.gemspec
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
3
|
-
spec.version = "1.7.
|
3
|
+
spec.version = "1.7.3"
|
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", "lib/rps", "test", "exec", "bin"]
|
10
|
-
|
10
|
+
# spec.files = ["lib/rps.rb", "lib/ref/PrivateMethods.rb", "lib/ref/Constants.rb", "lib/rps/version.rb", "exec/run.bat", "exec/rps.bash", "exec/uninstall.sh", "rps.gemspec", "Rakefile", "Gemfile", "LICENSE", "README.md"]
|
11
|
+
spec.files = `git ls-files -z`.split("\x0")
|
11
12
|
spec.test_files = ["test/test_rps.rb"]
|
12
13
|
spec.bindir = "bin"
|
13
14
|
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: 1.7.
|
4
|
+
version: 1.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bag3318
|
@@ -77,6 +77,7 @@ extensions: []
|
|
77
77
|
extra_rdoc_files:
|
78
78
|
- README.md
|
79
79
|
files:
|
80
|
+
- ".gitignore"
|
80
81
|
- Gemfile
|
81
82
|
- LICENSE
|
82
83
|
- README.md
|