RPSrb 0.1.9 → 0.2.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b36eecb8eadff352af10efb12dcd0672e3fd974dc51a8a8032e0b6e65260351b
4
- data.tar.gz: f052dcb4051c88709612429106dc5e3425c15bb83af26e02a10ccf0e661045ed
3
+ metadata.gz: b542f4c250dc078a5618fbc5d2b3b59c1c10cd49c984a140386a17dccd0cfbb3
4
+ data.tar.gz: ded935d3ed25a6ddc8f9621c63a46fe8cf3ef2cb5b7e46e13dbed66291b2ef16
5
5
  SHA512:
6
- metadata.gz: 0e4e1759756993d63e4c5e111d7faae1bbaa3a66a980eccd9abb7cb799323b8c11e96413156b232adf61701f0f14e3f65924af8e2c8095ccc76f6856416c9cac
7
- data.tar.gz: 2cc6b0d77a1bf8df43f990e45394278cc686f42540b1086d8d1bd7b8ef09ec13a45bb7f6f3fcd259b3ba1ae77e0969d4bcc675dd738eadb451512ac898acabf5
6
+ metadata.gz: f1dc9653b83f506da5a5c8eb14b08deffbb875354953a2636f25bcb934201edf1bce8dd7355b355d242f50d4736dd927e802d3a5b319263bee731e66fdf16468
7
+ data.tar.gz: f43e61567cc95a81881438236206420d0138cd7f5d4077be89eb0a9ef0d9687d429046fb0c108d2fdb5ffc3784bd51c831928f18c1ac6bc0fadaa357f55e793b
data/.gitignore CHANGED
@@ -1,7 +1,8 @@
1
- *.DS_Store
2
- *.gem
1
+ .DS_Store
2
+ Thumbs.db
3
3
  _MACOSX
4
4
  Gemfile.lock
5
+ *.gem
5
6
  *.code-workspace
6
7
 
7
8
  # If gitignore is not working,
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  [//]: # (Begin README.md)
2
2
 
3
- RPSrb
4
- =====
3
+ # RPSrb #
5
4
 
6
5
  This is a RubyGem for playing Rock Paper Scissors in your command console.
7
6
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "RPSrb"
3
- spec.version = "0.1.9"
3
+ spec.version = "0.2.0"
4
4
  spec.date = "2017-03-14" # format: YYYY-MM-DD
5
5
  spec.summary = "A Rock Paper Scissors Game RubyGem"
6
6
  spec.description = <<-EOF
data/Rakefile CHANGED
@@ -2,11 +2,11 @@ require 'rdoc/task'
2
2
 
3
3
  # task :default => :test
4
4
 
5
- file_path = "./test/test_RPSrb.rb"
5
+ FILE_PATH = "./test/test_RPSrb.rb"
6
6
 
7
7
  task :test do
8
8
  # tests the ruby test file
9
- ruby file_path
9
+ ruby FILE_PATH
10
10
  end
11
11
 
12
12
  # for Windows
@@ -1,4 +1,4 @@
1
- Wed, 14 Mar 2018 08:49:33 -0700
1
+ Wed, 14 Mar 2018 09:44:22 -0700
2
2
  lib/exec.rb Wed, 07 Mar 2018 12:21:44 -0800
3
3
  lib/RockPaperScissors.rb Wed, 07 Mar 2018 12:21:44 -0800
4
- lib/RPSrb/Version.rb Wed, 14 Mar 2018 08:45:41 -0700
4
+ lib/RPSrb/Version.rb Wed, 14 Mar 2018 08:50:25 -0700
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # = RubyGems version constant
2
2
  # this is required for all rubygem packages
3
3
  module RPSrb
4
- VERSION = '0.1.9'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RPSrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318