PlayRockPaperScissorsGame 2.6.7 → 2.6.8

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
  SHA1:
3
- metadata.gz: bec22584f273d9af97c592cdd25a12fb1543b614
4
- data.tar.gz: e86e9e8aca353351dbf1bcf6f4e1195831f624de
3
+ metadata.gz: d3aadb17b87b6f65e7ce5d400aee05fe8353a431
4
+ data.tar.gz: 3addab6d17d09197cbad17f93ec2716dc0485f2d
5
5
  SHA512:
6
- metadata.gz: dae0c7bc8b625ef2f84d2cac83b2d12d9daf435a422a39028867e14cd6ce375004f6bac952adce684547c0c9b7b5f2efdea40975568519468f9d089dc0095a1b
7
- data.tar.gz: 6a78d454869f4c81aac7068f5861b7d56dd4750f4f23505ae36e2dfbb7cf7a4047cf4012d28fb71d67d491a6fbed56443c9d724c57675a3ff9d1f7cf7f597331
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
@@ -37,7 +37,7 @@ Master Code
37
37
  class PlayRockPaperScissorsGame
38
38
 
39
39
  module RockPaperScissors
40
- VERSION = "2.6.7"
40
+ VERSION = "2.6.8"
41
41
  end
42
42
 
43
43
  # import the colorize gem
@@ -89,7 +89,7 @@ end
89
89
  class PlayRockPaperScissorsGame
90
90
 
91
91
  module RockPaperScissors
92
- VERSION = "2.6.7"
92
+ VERSION = "2.6.8"
93
93
  end
94
94
 
95
95
  # import colorize gem
data/docs/_config.yml CHANGED
@@ -2,7 +2,7 @@ title: Play Rock Paper Scissors Game
2
2
  description: A Ruby Programmed Rock Paper Scissors Game
3
3
  show_downloads: true
4
4
  google_analytics: false
5
- theme: jekyll-theme-cayman
5
+ theme: jekyll-theme-cayman # important
6
6
  exclude: [
7
7
  Gemfile,
8
8
  Gemfile.lock,
@@ -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>
@@ -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
- <meta name="theme-color" content="#ffffff">
23
+ <!--
24
+ <meta name="theme-color" content="#ffffff">
25
+ -->
24
26
  </head>
25
27
  <body>
26
28
  {% comment %}create header{% endcomment %}
27
- <section class="page-header">
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
- <footer class="site-footer">
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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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.7"</span>
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
- <h2 id="site-nav">Site Nav</h2>
197
- <table>
198
- <tr>
199
- <td><a href="./">Home</a></td>
200
- <td><a href="Code">Master Code</a></td>
201
- <td><a href="Comparing_Code">Comparing Code</a></td>
202
- <td><a href="Testing">How to Test</a></td>
203
- <td><a href="How_to_Build">How to Build</a></td>
204
- <td><a href="about">About</a></td>
205
- </tr>
206
- </table>
207
- <br/>
208
- <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>
209
-
210
- </footer>
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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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.7"</span>
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
- <h2 id="site-nav">Site Nav</h2>
270
- <table>
271
- <tr>
272
- <td><a href="./">Home</a></td>
273
- <td><a href="Code">Master Code</a></td>
274
- <td><a href="Comparing_Code">Comparing Code</a></td>
275
- <td><a href="Testing">How to Test</a></td>
276
- <td><a href="How_to_Build">How to Build</a></td>
277
- <td><a href="about">About</a></td>
278
- </tr>
279
- </table>
280
- <br/>
281
- <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>
282
-
283
- </footer>
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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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
- <h2 id="site-nav">Site Nav</h2>
74
- <table>
75
- <tr>
76
- <td><a href="./">Home</a></td>
77
- <td><a href="Code">Master Code</a></td>
78
- <td><a href="Comparing_Code">Comparing Code</a></td>
79
- <td><a href="Testing">How to Test</a></td>
80
- <td><a href="How_to_Build">How to Build</a></td>
81
- <td><a href="about">About</a></td>
82
- </tr>
83
- </table>
84
- <br/>
85
- <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>
86
-
87
- </footer>
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
 
@@ -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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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
- <h2 id="site-nav">Site Nav</h2>
67
- <table>
68
- <tr>
69
- <td><a href="./">Home</a></td>
70
- <td><a href="Code">Master Code</a></td>
71
- <td><a href="Comparing_Code">Comparing Code</a></td>
72
- <td><a href="Testing">How to Test</a></td>
73
- <td><a href="How_to_Build">How to Build</a></td>
74
- <td><a href="about">About</a></td>
75
- </tr>
76
- </table>
77
- <br/>
78
- <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>
79
-
80
- </footer>
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
 
@@ -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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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
- <h2 id="site-nav">Site Nav</h2>
74
- <table>
75
- <tr>
76
- <td><a href="./">Home</a></td>
77
- <td><a href="Code">Master Code</a></td>
78
- <td><a href="Comparing_Code">Comparing Code</a></td>
79
- <td><a href="Testing">How to Test</a></td>
80
- <td><a href="How_to_Build">How to Build</a></td>
81
- <td><a href="about">About</a></td>
82
- </tr>
83
- </table>
84
- <br/>
85
- <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>
86
-
87
- </footer>
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
 
@@ -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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- <a href="./" class="btn">Home</a>
40
-
41
- </section>
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
- <h2 id="site-nav">Site Nav</h2>
91
- <table>
92
- <tr>
93
- <td><a href="./">Home</a></td>
94
- <td><a href="Code">Master Code</a></td>
95
- <td><a href="Comparing_Code">Comparing Code</a></td>
96
- <td><a href="Testing">How to Test</a></td>
97
- <td><a href="How_to_Build">How to Build</a></td>
98
- <td><a href="about">About</a></td>
99
- </tr>
100
- </table>
101
- <br/>
102
- <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>
103
-
104
- </footer>
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
 
@@ -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=c4acceedc509ba50685148bfe85234a78eb5ab26"/>
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
- <meta name="theme-color" content="#ffffff">
19
+ <!--
20
+ <meta name="theme-color" content="#ffffff">
21
+ -->
20
22
  </head>
21
23
  <body>
22
24
 
23
25
  <section class="page-header">
24
- <h1 class="project-name">Play Rock Paper Scissors Game</h1>
25
- <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
26
-
27
- <a href="http://github.com/bag3318/RockPaperScissors" class="btn">View on GitHub</a>
28
- <a href="http://github.com/bag3318/RockPaperScissors/issues" class="btn">Report a Bug</a>
29
-
30
-
31
- <a href="http://github.com/bag3318/RockPaperScissors/zipball/gh-pages" class="btn">Download .zip</a>
32
- <a href="http://github.com/bag3318/RockPaperScissors/tarball/gh-pages" class="btn">Download .tar.gz</a>
33
-
34
- <br/>
35
-
36
- <a href="#site-nav" class="btn">Site Nav</a>
37
-
38
-
39
- </section>
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
- <h2 id="site-nav">Site Nav</h2>
123
- <table>
124
- <tr>
125
- <td><a href="./">Home</a></td>
126
- <td><a href="Code">Master Code</a></td>
127
- <td><a href="Comparing_Code">Comparing Code</a></td>
128
- <td><a href="Testing">How to Test</a></td>
129
- <td><a href="How_to_Build">How to Build</a></td>
130
- <td><a href="about">About</a></td>
131
- </tr>
132
- </table>
133
- <br/>
134
- <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>
135
-
136
- </footer>
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
@@ -1,3 +1,3 @@
1
1
  module RockPaperScissors
2
- VERSION = "2.6.7"
2
+ VERSION = "2.6.8"
3
3
  end
data/rps.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "PlayRockPaperScissorsGame"
3
- spec.version = "2.6.7"
3
+ spec.version = "2.6.8"
4
4
  spec.date = "2017-05-08"
5
5
  spec.summary = "A Rock Paper Scissors Ruby Gem"
6
6
  spec.description = <<-EOF
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.7
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