PlayRockPaperScissorsGame 2.6.7 → 2.6.8
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 +0 -0
- data/docs/Code.md +1 -1
- data/docs/Comparing_Code.md +1 -1
- data/docs/_config.yml +1 -1
- data/docs/_includes/footer.html +17 -0
- data/docs/_includes/header.html +19 -0
- data/docs/_layouts/default.html +5 -38
- data/docs/_site/Code.html +39 -38
- data/docs/_site/Comparing_Code.html +39 -38
- data/docs/_site/How_to_Build.html +38 -37
- data/docs/_site/Testing.html +38 -37
- data/docs/_site/about.html +38 -37
- data/docs/_site/copying.html +38 -37
- data/docs/_site/index.html +36 -35
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +1 -1
- metadata +3 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3aadb17b87b6f65e7ce5d400aee05fe8353a431
|
4
|
+
data.tar.gz: 3addab6d17d09197cbad17f93ec2716dc0485f2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3958d9d901726b39cc8dbbe15df91170ca1c5fb7c9fd74096fff1e494a6e5fe71918b06039afb7ee0afab8485a00f63b0694c4bad2cf0567814f4f715746debd
|
7
|
+
data.tar.gz: 8f9e322dd053805eb1eb8d372a124b3fff2f60c1ae3a5df3b41684e3ec43852febfcfd324d208435df351619a8218d9a8c2d987a0bef659ccb1f863779a3856b
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/docs/Code.md
CHANGED
data/docs/Comparing_Code.md
CHANGED
data/docs/_config.yml
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
<footer class="site-footer">
|
2
|
+
{% if site.github.is_project_page %}
|
3
|
+
<h2 id="site-nav">Site Nav</h2>
|
4
|
+
<table>
|
5
|
+
<tr>
|
6
|
+
<td><a href="./">Home</a></td>
|
7
|
+
<td><a href="{{ domain }}Code">Master Code</a></td>
|
8
|
+
<td><a href="{{ domain }}Comparing_Code">Comparing Code</a></td>
|
9
|
+
<td><a href="{{ domain }}Testing">How to Test</a></td>
|
10
|
+
<td><a href="{{ domain }}How_to_Build">How to Build</a></td>
|
11
|
+
<td><a href="{{ domain }}about">About</a></td>
|
12
|
+
</tr>
|
13
|
+
</table>
|
14
|
+
<br/>
|
15
|
+
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span>
|
16
|
+
{% endif %}
|
17
|
+
</footer>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<section class="page-header">
|
2
|
+
<h1 class="project-name">{{ site.title | default: site.github.repository_name }}</h1>
|
3
|
+
<h2 class="project-tagline">{{ site.description | default: site.github.project_tagline }}</h2>
|
4
|
+
{% if site.github.is_project_page %}
|
5
|
+
<a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
|
6
|
+
<a href="{{ site.github.issues_url }}" class="btn">Report a Bug</a>
|
7
|
+
{% endif %}
|
8
|
+
{% if site.show_downloads %}
|
9
|
+
<a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
|
10
|
+
<a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
|
11
|
+
{% endif %}
|
12
|
+
<br/>
|
13
|
+
{% if site.github.is_project_page %}
|
14
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
15
|
+
{% endif %}
|
16
|
+
{% if page.title != "Play Rock Paper Scissors Game - Home" and site.github.is_project_page %}
|
17
|
+
<a href="./" class="btn">Home</a>
|
18
|
+
{% endif %}
|
19
|
+
</section>
|
data/docs/_layouts/default.html
CHANGED
@@ -20,51 +20,18 @@
|
|
20
20
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
21
21
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
22
22
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
23
|
-
|
23
|
+
<!--
|
24
|
+
<meta name="theme-color" content="#ffffff">
|
25
|
+
-->
|
24
26
|
</head>
|
25
27
|
<body>
|
26
28
|
{% comment %}create header{% endcomment %}
|
27
|
-
|
28
|
-
<h1 class="project-name">{{ site.title | default: site.github.repository_name }}</h1>
|
29
|
-
<h2 class="project-tagline">{{ site.description | default: site.github.project_tagline }}</h2>
|
30
|
-
{% if site.github.is_project_page %}
|
31
|
-
<a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
|
32
|
-
<a href="{{ site.github.issues_url }}" class="btn">Report a Bug</a>
|
33
|
-
{% endif %}
|
34
|
-
{% if site.show_downloads %}
|
35
|
-
<a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
|
36
|
-
<a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
|
37
|
-
{% endif %}
|
38
|
-
<br/>
|
39
|
-
{% if site.github.is_project_page %}
|
40
|
-
<a href="#site-nav" class="btn">Site Nav</a>
|
41
|
-
{% endif %}
|
42
|
-
{% if page.title != "Play Rock Paper Scissors Game - Home" and site.github.is_project_page %}
|
43
|
-
<a href="./" class="btn">Home</a>
|
44
|
-
{% endif %}
|
45
|
-
</section>
|
46
|
-
|
29
|
+
{% include header.html %}
|
47
30
|
<section class="main-content">
|
48
31
|
{% comment %}insert parsed markdown below{% endcomment %}
|
49
32
|
{{ content }}
|
50
33
|
{% comment %}create footer{% endcomment %}
|
51
|
-
|
52
|
-
{% if site.github.is_project_page %}
|
53
|
-
<h2 id="site-nav">Site Nav</h2>
|
54
|
-
<table>
|
55
|
-
<tr>
|
56
|
-
<td><a href="./">Home</a></td>
|
57
|
-
<td><a href="{{ domain }}Code">Master Code</a></td>
|
58
|
-
<td><a href="{{ domain }}Comparing_Code">Comparing Code</a></td>
|
59
|
-
<td><a href="{{ domain }}Testing">How to Test</a></td>
|
60
|
-
<td><a href="{{ domain }}How_to_Build">How to Build</a></td>
|
61
|
-
<td><a href="{{ domain }}about">About</a></td>
|
62
|
-
</tr>
|
63
|
-
</table>
|
64
|
-
<br/>
|
65
|
-
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span>
|
66
|
-
{% endif %}
|
67
|
-
</footer>
|
34
|
+
{% include footer.html %}
|
68
35
|
</section>
|
69
36
|
|
70
37
|
{% if site.google_analytics %}
|
data/docs/_site/Code.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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="master-code">Master Code</h1>
|
@@ -71,7 +72,7 @@
|
|
71
72
|
<span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
|
72
73
|
|
73
74
|
<span class="k">module</span> <span class="nn">RockPaperScissors</span>
|
74
|
-
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.
|
75
|
+
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.8"</span>
|
75
76
|
<span class="k">end</span>
|
76
77
|
|
77
78
|
<span class="c1"># import the colorize gem</span>
|
@@ -192,22 +193,22 @@
|
|
192
193
|
|
193
194
|
|
194
195
|
<footer class="site-footer">
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
196
|
+
|
197
|
+
<h2 id="site-nav">Site Nav</h2>
|
198
|
+
<table>
|
199
|
+
<tr>
|
200
|
+
<td><a href="./">Home</a></td>
|
201
|
+
<td><a href="Code">Master Code</a></td>
|
202
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
203
|
+
<td><a href="Testing">How to Test</a></td>
|
204
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
205
|
+
<td><a href="about">About</a></td>
|
206
|
+
</tr>
|
207
|
+
</table>
|
208
|
+
<br/>
|
209
|
+
<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>
|
210
|
+
|
211
|
+
</footer>
|
211
212
|
</section>
|
212
213
|
|
213
214
|
|
@@ -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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="comparing-beginners-rps-code-to-advanced-rps-code">Comparing Beginner’s RPS Code to Advanced RPS Code</h1>
|
@@ -145,7 +146,7 @@
|
|
145
146
|
<div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
|
146
147
|
|
147
148
|
<span class="k">module</span> <span class="nn">RockPaperScissors</span>
|
148
|
-
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.
|
149
|
+
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.8"</span>
|
149
150
|
<span class="k">end</span>
|
150
151
|
|
151
152
|
<span class="c1"># import colorize gem</span>
|
@@ -265,22 +266,22 @@
|
|
265
266
|
|
266
267
|
|
267
268
|
<footer class="site-footer">
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
269
|
+
|
270
|
+
<h2 id="site-nav">Site Nav</h2>
|
271
|
+
<table>
|
272
|
+
<tr>
|
273
|
+
<td><a href="./">Home</a></td>
|
274
|
+
<td><a href="Code">Master Code</a></td>
|
275
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
276
|
+
<td><a href="Testing">How to Test</a></td>
|
277
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
278
|
+
<td><a href="about">About</a></td>
|
279
|
+
</tr>
|
280
|
+
</table>
|
281
|
+
<br/>
|
282
|
+
<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>
|
283
|
+
|
284
|
+
</footer>
|
284
285
|
</section>
|
285
286
|
|
286
287
|
|
@@ -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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="how-to-build-the-gemspec">How to build the Gemspec</h1>
|
@@ -69,22 +70,22 @@
|
|
69
70
|
|
70
71
|
|
71
72
|
<footer class="site-footer">
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
73
|
+
|
74
|
+
<h2 id="site-nav">Site Nav</h2>
|
75
|
+
<table>
|
76
|
+
<tr>
|
77
|
+
<td><a href="./">Home</a></td>
|
78
|
+
<td><a href="Code">Master Code</a></td>
|
79
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
80
|
+
<td><a href="Testing">How to Test</a></td>
|
81
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
82
|
+
<td><a href="about">About</a></td>
|
83
|
+
</tr>
|
84
|
+
</table>
|
85
|
+
<br/>
|
86
|
+
<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>
|
87
|
+
|
88
|
+
</footer>
|
88
89
|
</section>
|
89
90
|
|
90
91
|
|
data/docs/_site/Testing.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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="how-to-test-this-gem">How to test this Gem</h1>
|
@@ -62,22 +63,22 @@
|
|
62
63
|
|
63
64
|
|
64
65
|
<footer class="site-footer">
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
66
|
+
|
67
|
+
<h2 id="site-nav">Site Nav</h2>
|
68
|
+
<table>
|
69
|
+
<tr>
|
70
|
+
<td><a href="./">Home</a></td>
|
71
|
+
<td><a href="Code">Master Code</a></td>
|
72
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
73
|
+
<td><a href="Testing">How to Test</a></td>
|
74
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
75
|
+
<td><a href="about">About</a></td>
|
76
|
+
</tr>
|
77
|
+
</table>
|
78
|
+
<br/>
|
79
|
+
<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>
|
80
|
+
|
81
|
+
</footer>
|
81
82
|
</section>
|
82
83
|
|
83
84
|
|
data/docs/_site/about.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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="about-playrockpaperscissorsgame-rps">About PlayRockPaperScissorsGame (RPS)</h1>
|
@@ -69,22 +70,22 @@ I have decided to code a Ruby-programmed RPS game that uses full CLI<sup>2</sup>
|
|
69
70
|
|
70
71
|
|
71
72
|
<footer class="site-footer">
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
73
|
+
|
74
|
+
<h2 id="site-nav">Site Nav</h2>
|
75
|
+
<table>
|
76
|
+
<tr>
|
77
|
+
<td><a href="./">Home</a></td>
|
78
|
+
<td><a href="Code">Master Code</a></td>
|
79
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
80
|
+
<td><a href="Testing">How to Test</a></td>
|
81
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
82
|
+
<td><a href="about">About</a></td>
|
83
|
+
</tr>
|
84
|
+
</table>
|
85
|
+
<br/>
|
86
|
+
<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>
|
87
|
+
|
88
|
+
</footer>
|
88
89
|
</section>
|
89
90
|
|
90
91
|
|
data/docs/_site/copying.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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,30 +16,31 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
<a href="./" class="btn">Home</a>
|
42
|
+
|
43
|
+
</section>
|
43
44
|
<section class="main-content">
|
44
45
|
|
45
46
|
<h1 id="rules-for-copying">Rules for Copying</h1>
|
@@ -86,22 +87,22 @@ However, one must follow this main rule:</p>
|
|
86
87
|
|
87
88
|
|
88
89
|
<footer class="site-footer">
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
90
|
+
|
91
|
+
<h2 id="site-nav">Site Nav</h2>
|
92
|
+
<table>
|
93
|
+
<tr>
|
94
|
+
<td><a href="./">Home</a></td>
|
95
|
+
<td><a href="Code">Master Code</a></td>
|
96
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
97
|
+
<td><a href="Testing">How to Test</a></td>
|
98
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
99
|
+
<td><a href="about">About</a></td>
|
100
|
+
</tr>
|
101
|
+
</table>
|
102
|
+
<br/>
|
103
|
+
<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>
|
104
|
+
|
105
|
+
</footer>
|
105
106
|
</section>
|
106
107
|
|
107
108
|
|
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=3401eb3ea431e8ecf46518cc05f2ed7385366c04"/>
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
|
@@ -16,28 +16,29 @@
|
|
16
16
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
17
17
|
<link rel="manifest" href="/assets/favicon/manifest.json">
|
18
18
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
-
|
19
|
+
<!--
|
20
|
+
<meta name="theme-color" content="#ffffff">
|
21
|
+
-->
|
20
22
|
</head>
|
21
23
|
<body>
|
22
24
|
|
23
25
|
<section class="page-header">
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
26
|
+
<h1 class="project-name">Play Rock Paper Scissors Game</h1>
|
27
|
+
<h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
|
28
|
+
|
29
|
+
<a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
|
30
|
+
<a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
|
31
|
+
|
32
|
+
|
33
|
+
<a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
|
34
|
+
<a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
|
35
|
+
|
36
|
+
<br/>
|
37
|
+
|
38
|
+
<a href="#site-nav" class="btn">Site Nav</a>
|
39
|
+
|
40
|
+
|
41
|
+
</section>
|
41
42
|
<section class="main-content">
|
42
43
|
|
43
44
|
|
@@ -118,22 +119,22 @@
|
|
118
119
|
|
119
120
|
|
120
121
|
<footer class="site-footer">
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
122
|
+
|
123
|
+
<h2 id="site-nav">Site Nav</h2>
|
124
|
+
<table>
|
125
|
+
<tr>
|
126
|
+
<td><a href="./">Home</a></td>
|
127
|
+
<td><a href="Code">Master Code</a></td>
|
128
|
+
<td><a href="Comparing_Code">Comparing Code</a></td>
|
129
|
+
<td><a href="Testing">How to Test</a></td>
|
130
|
+
<td><a href="How_to_Build">How to Build</a></td>
|
131
|
+
<td><a href="about">About</a></td>
|
132
|
+
</tr>
|
133
|
+
</table>
|
134
|
+
<br/>
|
135
|
+
<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>
|
136
|
+
|
137
|
+
</footer>
|
137
138
|
</section>
|
138
139
|
|
139
140
|
|
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.6.
|
4
|
+
version: 2.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bag3318
|
@@ -129,6 +129,8 @@ files:
|
|
129
129
|
- docs/LICENSE
|
130
130
|
- docs/Testing.md
|
131
131
|
- docs/_config.yml
|
132
|
+
- docs/_includes/footer.html
|
133
|
+
- docs/_includes/header.html
|
132
134
|
- docs/_layouts/default.html
|
133
135
|
- docs/_sass/jekyll-theme-cayman.scss
|
134
136
|
- docs/_sass/normalize.scss
|
metadata.gz.sig
CHANGED
Binary file
|