PlayRockPaperScissorsGame 1.7.2 → 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/lib/rps/version.rb +1 -1
  4. data/rps.gemspec +3 -2
  5. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ae1f143c7a230a200bf33013d05796461e1924b
4
- data.tar.gz: 29d0ce988e879e5853ae6c98b8e8d3c972c04fa4
3
+ metadata.gz: f720e2c442cb0ac988fa41f46941db0b0a3290f4
4
+ data.tar.gz: eed0321a0f3073909de6fe0c925e0c5309d59fbc
5
5
  SHA512:
6
- metadata.gz: b05725822176a050457478349007dba5ccd558fd6c1d7dbb5e2c7a91015e588e90f6b7d2fd3212ac3634f24b86e203d2a3f1ec5fc53ec3a210dc67a88cd95935
7
- data.tar.gz: fefd4104bd89648daf042e63549d2bca7e9e1b62470577423a87bffbdab820b9f5023e1e0c83547742c40908271759fded0a6af490d5720f4ebe61b89f78c632
6
+ metadata.gz: 381771cd9ae8a77e36f235f9b83e0407aba21139e98ef743ef1ebbf038449b5948217537c8a0107882b223f96830d5ce7c6df6fbb3b694a5bd0540602c8a87e2
7
+ data.tar.gz: 5a8d6d8a395102098d92cfa2c2581f59e50c207dc7b12d9fd8a291980be8ec950ac5ec41f560f62cc5951e1eebcdab857d654ec7a61cba7b586b9c291ab13c45
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.DS_Store
2
+ *.gem
3
+ *Gemfile.lock
4
+ *.sublime-project
5
+ *.sublime-workspace
data/lib/rps/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module PlayRockPaperScissorsGame
2
- VERSION = "1.7.2";
2
+ VERSION = "1.7.3";
3
3
  end;
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.2"
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
- 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"]
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.2
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