PlayRockPaperScissorsGame 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +3 -3
- data/docs/CODE_OF_CONDUCT.md +3 -1
- data/docs/CONTRIBUTING.md +5 -1
- data/docs/Testing.md +24 -0
- data/docs/_site/CODE_OF_CONDUCT.html +4 -1
- data/docs/_site/CONTRIBUTING.html +6 -1
- data/docs/_site/Testing.html +68 -0
- data/docs/_site/index.html +4 -1
- data/docs/index.md +7 -1
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +1 -1
- metadata +3 -2
- metadata.gz.sig +0 -0
- data/docs/_site/index.md +0 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 768fa54190385679356e4e8882615c98aaa1320e
|
4
|
+
data.tar.gz: 3a2286325df72395bf8b587c70a0b252b9116ae9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b91314e0551a53f985e68292b03fc204b668e1f38c4035e0871ec140031e3f79d55001f306d4266731982ae1d4ec4496bcc437fb0cea68124ab25da17c10a144
|
7
|
+
data.tar.gz: 70c63b9d6c6f94256b9d9a9db171e52c2d30da5db1cafafe5475b72a7115a5e496ec353ec4286323bacee60dee9e47e2c49c7be9544d13499cb9815eae46580c
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
����
|
1
|
+
0�h[]z�(]��ѭ�kwV�!$�
|
2
|
+
�̈����|�3���̇��E�~hG;�ɋ�{M�*�׆O�l����j�\�%�ݘv
|
3
|
+
7��À�<F��tQI6�r�܀ד�mD^@D���a��0��Km��p���:��图z$��lyiZ-��gbɺ�JZ����A��8�]��]��=���z� ]9��������S��d2���J��3�mr� �k��������(.���Z{J�6
|
data/docs/CODE_OF_CONDUCT.md
CHANGED
data/docs/CONTRIBUTING.md
CHANGED
@@ -36,4 +36,8 @@ Here are a few things you can do that will increase the likelihood of your pull
|
|
36
36
|
[style]: http://ben.balter.com/jekyll-style-guide/
|
37
37
|
[code-of-conduct]: CODE_OF_CONDUCT.md
|
38
38
|
|
39
|
-
|
39
|
+
------------
|
40
|
+
|
41
|
+
## Site Nav
|
42
|
+
|
43
|
+
[Home](./) | [Code of Conduct](CODE_OF_CONDUCT) | [How to Test](Testing.md)
|
data/docs/Testing.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
How to test this Gem
|
6
|
+
====================
|
7
|
+
|
8
|
+
What you will need
|
9
|
+
------------------
|
10
|
+
|
11
|
+
1. Ruby & Ruby Gems installed
|
12
|
+
2. Rake installed
|
13
|
+
3. The RockPaperScissors repo cloned or downloaded
|
14
|
+
|
15
|
+
## Start Testing
|
16
|
+
|
17
|
+
1. Open `Terminal`/`Command Prompt` and `cd` to the directory of the repo's folder
|
18
|
+
2. Type: `rake test` and hit <kbd>enter</kbd>/<kbd>return</kbd>
|
19
|
+
|
20
|
+
-----------
|
21
|
+
|
22
|
+
## Site Nav
|
23
|
+
|
24
|
+
[Home](./) | [Contributing](CONTRIBUTING) | [Code of Conduct](CODE_OF_CONDUCT)
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
8
|
<meta name="theme-color" content="#157878">
|
9
9
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
10
|
-
<link rel="stylesheet" href="/assets/css/style.css?v=
|
10
|
+
<link rel="stylesheet" href="/assets/css/style.css?v=cab1cc126d05c1dedc9ac32bbb57e1c4b2cb647e">
|
11
11
|
</head>
|
12
12
|
<body>
|
13
13
|
<section class="page-header">
|
@@ -101,11 +101,14 @@ available at <a href="http://contributor-covenant.org/version/1/4/">http://contr
|
|
101
101
|
|
102
102
|
<hr />
|
103
103
|
|
104
|
+
<h2 id="site-nav">Site Nav</h2>
|
105
|
+
|
104
106
|
<table>
|
105
107
|
<tbody>
|
106
108
|
<tr>
|
107
109
|
<td><a href="./">Home</a></td>
|
108
110
|
<td><a href="CONTRIBUTING">Contributing</a></td>
|
111
|
+
<td><a href="Testing">How to Test</a></td>
|
109
112
|
</tr>
|
110
113
|
</tbody>
|
111
114
|
</table>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
8
|
<meta name="theme-color" content="#157878">
|
9
9
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
10
|
-
<link rel="stylesheet" href="/assets/css/style.css?v=
|
10
|
+
<link rel="stylesheet" href="/assets/css/style.css?v=cab1cc126d05c1dedc9ac32bbb57e1c4b2cb647e">
|
11
11
|
</head>
|
12
12
|
<body>
|
13
13
|
<section class="page-header">
|
@@ -58,11 +58,16 @@
|
|
58
58
|
<li><a href="https://help.github.com">GitHub Help</a></li>
|
59
59
|
</ul>
|
60
60
|
|
61
|
+
<hr />
|
62
|
+
|
63
|
+
<h2 id="site-nav">Site Nav</h2>
|
64
|
+
|
61
65
|
<table>
|
62
66
|
<tbody>
|
63
67
|
<tr>
|
64
68
|
<td><a href="./">Home</a></td>
|
65
69
|
<td><a href="CODE_OF_CONDUCT">Code of Conduct</a></td>
|
70
|
+
<td><a href="/Testing.html">How to Test</a></td>
|
66
71
|
</tr>
|
67
72
|
</tbody>
|
68
73
|
</table>
|
@@ -0,0 +1,68 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en-us">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<title>Play Rock Paper Scissors Game</title>
|
6
|
+
<meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
|
+
<meta name="theme-color" content="#157878">
|
9
|
+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
10
|
+
<link rel="stylesheet" href="/assets/css/style.css?v=cab1cc126d05c1dedc9ac32bbb57e1c4b2cb647e">
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<section class="page-header">
|
14
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
15
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
16
|
+
|
17
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
18
|
+
|
19
|
+
|
20
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
21
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
22
|
+
|
23
|
+
</section>
|
24
|
+
|
25
|
+
<section class="main-content">
|
26
|
+
<h1 id="how-to-test-this-gem">How to test this Gem</h1>
|
27
|
+
|
28
|
+
<h2 id="what-you-will-need">What you will need</h2>
|
29
|
+
|
30
|
+
<ol>
|
31
|
+
<li>Ruby & Ruby Gems installed</li>
|
32
|
+
<li>Rake installed</li>
|
33
|
+
<li>The RockPaperScissors repo cloned or downloaded</li>
|
34
|
+
</ol>
|
35
|
+
|
36
|
+
<h2 id="start-testing">Start Testing</h2>
|
37
|
+
|
38
|
+
<ol>
|
39
|
+
<li>Open <code class="highlighter-rouge">Terminal</code>/<code class="highlighter-rouge">Command Prompt</code> and <code class="highlighter-rouge">cd</code> to the directory of the repo’s folder</li>
|
40
|
+
<li>Type: <code class="highlighter-rouge">rake test</code> and hit <kbd>enter</kbd>/<kbd>return</kbd></li>
|
41
|
+
</ol>
|
42
|
+
|
43
|
+
<hr />
|
44
|
+
|
45
|
+
<h2 id="site-nav">Site Nav</h2>
|
46
|
+
|
47
|
+
<table>
|
48
|
+
<tbody>
|
49
|
+
<tr>
|
50
|
+
<td><a href="./">Home</a></td>
|
51
|
+
<td><a href="CONTRIBUTING">Contributing</a></td>
|
52
|
+
<td><a href="CODE_OF_CONDUCT">Code of Conduct</a></td>
|
53
|
+
</tr>
|
54
|
+
</tbody>
|
55
|
+
</table>
|
56
|
+
|
57
|
+
|
58
|
+
<footer class="site-footer">
|
59
|
+
|
60
|
+
<span class="site-footer-owner"><a href="http://github.com/bag3318/RockPaperScissors">RockPaperScissors</a> is maintained by <a href="http://github.com/bag3318">bag3318</a>.</span>
|
61
|
+
|
62
|
+
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span>
|
63
|
+
</footer>
|
64
|
+
</section>
|
65
|
+
|
66
|
+
|
67
|
+
</body>
|
68
|
+
</html>
|
data/docs/_site/index.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
8
|
<meta name="theme-color" content="#157878">
|
9
9
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
10
|
-
<link rel="stylesheet" href="/assets/css/style.css?v=
|
10
|
+
<link rel="stylesheet" href="/assets/css/style.css?v=cab1cc126d05c1dedc9ac32bbb57e1c4b2cb647e">
|
11
11
|
</head>
|
12
12
|
<body>
|
13
13
|
<section class="page-header">
|
@@ -99,9 +99,12 @@
|
|
99
99
|
|
100
100
|
<hr />
|
101
101
|
|
102
|
+
<h2 id="site-nav">Site Nav</h2>
|
103
|
+
|
102
104
|
<table>
|
103
105
|
<tbody>
|
104
106
|
<tr>
|
107
|
+
<td><a href="Testing">How to Test</a></td>
|
105
108
|
<td><a href="CONTRIBUTING">Contributing</a></td>
|
106
109
|
<td><a href="CODE_OF_CONDUCT">Code of Conduct</a></td>
|
107
110
|
</tr>
|
data/docs/index.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
1
5
|
[//]: # (start)
|
2
6
|
|
3
7
|
Rock Paper Scissors
|
@@ -48,6 +52,8 @@ How to Run and Install
|
|
48
52
|
|
49
53
|
----------
|
50
54
|
|
51
|
-
|
55
|
+
## Site Nav
|
56
|
+
|
57
|
+
[How to Test](Testing) | [Contributing](CONTRIBUTING) | [Code of Conduct](CODE_OF_CONDUCT)
|
52
58
|
|
53
59
|
[//]: # (end)
|
data/lib/rps/version.rb
CHANGED
data/rps.gemspec
CHANGED
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.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bag3318
|
@@ -115,6 +115,7 @@ files:
|
|
115
115
|
- docs/CONTRIBUTING.md
|
116
116
|
- docs/Gemfile
|
117
117
|
- docs/LICENSE
|
118
|
+
- docs/Testing.md
|
118
119
|
- docs/_config.yml
|
119
120
|
- docs/_layouts/default.html
|
120
121
|
- docs/_sass/jekyll-theme-cayman.scss
|
@@ -123,9 +124,9 @@ files:
|
|
123
124
|
- docs/_sass/variables.scss
|
124
125
|
- docs/_site/CODE_OF_CONDUCT.html
|
125
126
|
- docs/_site/CONTRIBUTING.html
|
127
|
+
- docs/_site/Testing.html
|
126
128
|
- docs/_site/assets/css/style.css
|
127
129
|
- docs/_site/index.html
|
128
|
-
- docs/_site/index.md
|
129
130
|
- docs/_site/script/bootstrap
|
130
131
|
- docs/_site/script/cibuild
|
131
132
|
- docs/_site/script/release
|
metadata.gz.sig
CHANGED
Binary file
|
data/docs/_site/index.md
DELETED
@@ -1,53 +0,0 @@
|
|
1
|
-
[//]: # (start)
|
2
|
-
|
3
|
-
Rock Paper Scissors
|
4
|
-
===================
|
5
|
-
|
6
|
-
**Table of Contents**
|
7
|
-
|
8
|
-
- [Rock Paper Scissors](#rock-paper-scissors)
|
9
|
-
- [How to Run and Install](#how-to-run-and-install)
|
10
|
-
- [Install and Run on Mac](#install-and-run-on-mac)
|
11
|
-
- [Running](#running)
|
12
|
-
- [Uninstalling](#uninstalling)
|
13
|
-
- [Install and Run on Windows](#install-and-run-on-windows)
|
14
|
-
- [Running](#running-1)
|
15
|
-
- [Links](#links)
|
16
|
-
|
17
|
-
How to Run and Install
|
18
|
-
----------------------
|
19
|
-
|
20
|
-
### Install and Run on Mac
|
21
|
-
|
22
|
-
1. Run the `rps.bash` file (located in the `exec` folder) with the `Terminal`
|
23
|
-
|
24
|
-
#### Running
|
25
|
-
|
26
|
-
1. Open the `Terminal`
|
27
|
-
2. Type in: `rps`, or `PlayRockPaperScissorsGame`
|
28
|
-
3. Hit <kbd>return</kbd>
|
29
|
-
|
30
|
-
#### Uninstalling
|
31
|
-
|
32
|
-
1. Run the `uninstaller.sh` file (located in the `exec` folder) with the `Terminal`
|
33
|
-
|
34
|
-
### Install and Run on Windows
|
35
|
-
|
36
|
-
1. Download and install Ruby for Windows (if not already installed); download [here](https://rubyinstaller.org/downloads/)
|
37
|
-
2. Open `cmd` and type in: `gem install PlayRockPaperScissorsGame`; hit <kbd>enter</kbd>
|
38
|
-
3. Run the `rps.bat` file (located in the `exec` folder)
|
39
|
-
|
40
|
-
#### Running
|
41
|
-
|
42
|
-
1. Open the `rps.bat` file (located in the `exec` folder)
|
43
|
-
* Another option: type in `rps` or `PlayRockPaperScissorsGame` in the `Command Prompt`; hit <kbd>enter</kbd>
|
44
|
-
|
45
|
-
## Links
|
46
|
-
|
47
|
-
* [Ruby Gems Page](https://rubygems.org/gems/PlayRockPaperScissorsGame)
|
48
|
-
|
49
|
-
----------
|
50
|
-
|
51
|
-
[Contributing](CONTRIBUTING) | [Code of Conduct](CODE_OF_CONDUCT)
|
52
|
-
|
53
|
-
[//]: # (end)
|