PlayRockPaperScissorsGame 2.5.2 → 2.5.3

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: 1e2168a989881b16fa213aa061a97a39b37a8e23
4
- data.tar.gz: ff80fb2faa3c1907e58f7cee8187f55205b56cd5
3
+ metadata.gz: 6f31976014aaeb9be5d88b8a6e823beed7448a27
4
+ data.tar.gz: e483adf684f5c311431bc9256113a531b9f17941
5
5
  SHA512:
6
- metadata.gz: 3ea6a097ac9ce21cde1d2403ec43ab4ece7f303b477d282f16dfaefa8ed9de79185fe291eb2f52e6d005303d8a5c9455bda0f8a66eece3409b94c590f2e5c1e4
7
- data.tar.gz: 06a8a106284c7846b506800a8161bda1a1d6c632deb89fddbd90fdeb105606f3fbbc8ca537d7d4f69dd3535ab296034078bc8dc5e3cc68df5761cf798b38f365
6
+ metadata.gz: 6435320aa1f6de47067d1ca54e5d4435ac617f876dc87fa7c7e5741de518549c8dfd77eb10ac25aa617a87d598b4057b60d3786da272dea39d5058509c776e0e
7
+ data.tar.gz: 2363a194c34e6881e7313cf93523dc8bf1c29e7fc43d66a3170c20e7f3b042a2dc8fd6ed9d132c4c3f4b3560a86157167a69da90735ac4c3c963cb54356964f2
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/docs/Code.md CHANGED
@@ -30,7 +30,7 @@ __`% rps`__
30
30
  class PlayRockPaperScissorsGame # define master class
31
31
 
32
32
  module RockPaperScissors
33
- VERSION = "2.5.2" # define version constant
33
+ VERSION = "2.5.3" # define version constant
34
34
  end
35
35
 
36
36
  # intiate the colorize gem
@@ -66,7 +66,7 @@ class PlayRockPaperScissorsGame # define master class
66
66
  def continue(str1,str2,str3) # pass in 3 parameters
67
67
  puts str1
68
68
  print str2
69
- gets # press enter or return to continue
69
+ gets # press enter or return to continue
70
70
  puts str3
71
71
  end
72
72
  end
@@ -103,7 +103,7 @@ __`% ruby advanced-rps.rb`__
103
103
  class PlayRockPaperScissorsGame
104
104
 
105
105
  module RockPaperScissors
106
- VERSION = "2.5.2"
106
+ VERSION = "2.5.3"
107
107
  end
108
108
 
109
109
  # import colorize gem
data/docs/_config.yml CHANGED
@@ -13,4 +13,6 @@ exclude: [
13
13
  include:
14
14
  - index.md
15
15
  - Code.md
16
- - Comparing_Code.md
16
+ - Comparing_Code.md
17
+ - Testing.md
18
+ - How_to_Build.md
@@ -12,6 +12,7 @@
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+ {% comment %}create header{% endcomment %}
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">{{ site.title | default: site.github.repository_name }}</h1>
17
18
  <h2 class="project-tagline">{{ site.description | default: site.github.project_tagline }}</h2>
@@ -33,8 +34,9 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+ {% comment %}insert parsed markdown below{% endcomment %}
36
38
  {{ content }}
37
-
39
+ {% comment %}create footer{% endcomment %}
38
40
  <footer class="site-footer">
39
41
  {% if site.github.is_project_page %}
40
42
  <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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -33,6 +34,7 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+
36
38
  <h1 id="contributor-covenant-code-of-conduct">Contributor Covenant Code of Conduct</h1>
37
39
 
38
40
  <h2 id="our-pledge">Our Pledge</h2>
@@ -126,7 +128,7 @@ available at <a href="http://contributor-covenant.org/version/1/4/">http://contr
126
128
  </tbody>
127
129
  </table>
128
130
 
129
-
131
+
130
132
  <footer class="site-footer">
131
133
 
132
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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -33,6 +34,7 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+
36
38
  <h2 id="contributing">Contributing</h2>
37
39
 
38
40
  <p>Hi there! We’re thrilled that you’d like to contribute to this project. Your help is essential for keeping it great.</p>
@@ -85,7 +87,7 @@
85
87
  </tbody>
86
88
  </table>
87
89
 
88
-
90
+
89
91
  <footer class="site-footer">
90
92
 
91
93
  <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>
data/docs/_site/Code.html CHANGED
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -33,6 +34,7 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+
36
38
  <h1 id="master-code">Master Code</h1>
37
39
 
38
40
  <p><strong>The master code will look like this:</strong></p>
@@ -56,7 +58,7 @@
56
58
  <span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span> <span class="c1"># define master class</span>
57
59
 
58
60
  <span class="k">module</span> <span class="nn">RockPaperScissors</span>
59
- <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.2"</span> <span class="c1"># define version constant</span>
61
+ <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.3"</span> <span class="c1"># define version constant</span>
60
62
  <span class="k">end</span>
61
63
 
62
64
  <span class="c1"># intiate the colorize gem</span>
@@ -197,7 +199,7 @@
197
199
  </tbody>
198
200
  </table>
199
201
 
200
-
202
+
201
203
  <footer class="site-footer">
202
204
 
203
205
  <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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -34,6 +35,7 @@
34
35
 
35
36
  <section class="main-content">
36
37
 
38
+
37
39
  <h1 id="comparing-beginners-rps-code-to-advanced-rps-code">Comparing Beginner’s RPS Code to Advanced RPS Code</h1>
38
40
 
39
41
  <p><strong>Table of Contents</strong></p>
@@ -138,7 +140,7 @@
138
140
  <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
139
141
 
140
142
  <span class="k">module</span> <span class="nn">RockPaperScissors</span>
141
- <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.2"</span>
143
+ <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.3"</span>
142
144
  <span class="k">end</span>
143
145
 
144
146
  <span class="c1"># import colorize gem</span>
@@ -268,7 +270,7 @@
268
270
  </table>
269
271
 
270
272
 
271
-
273
+
272
274
  <footer class="site-footer">
273
275
 
274
276
  <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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -33,6 +34,7 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+
36
38
  <h1 id="how-to-build-the-gemspec">How to build the Gemspec</h1>
37
39
 
38
40
  <h2 id="requirments">Requirments</h2>
@@ -73,7 +75,7 @@
73
75
  </tbody>
74
76
  </table>
75
77
 
76
-
78
+
77
79
  <footer class="site-footer">
78
80
 
79
81
  <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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -33,6 +34,7 @@
33
34
  </section>
34
35
 
35
36
  <section class="main-content">
37
+
36
38
  <h1 id="how-to-test-this-gem">How to test this Gem</h1>
37
39
 
38
40
  <h2 id="what-you-will-need">What you will need</h2>
@@ -65,7 +67,7 @@
65
67
  </tbody>
66
68
  </table>
67
69
 
68
-
70
+
69
71
  <footer class="site-footer">
70
72
 
71
73
  <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>
@@ -7,11 +7,12 @@
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=2e5682dbb724b9bbb98423a0f4fd715e7a7fb36b">
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=765162b12a2a2290411ad820ef809e84f4d60adb">
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
14
14
  <body>
15
+
15
16
  <section class="page-header">
16
17
  <h1 class="project-name">Play Rock Paper Scissors Game</h1>
17
18
  <h2 class="project-tagline">A Ruby Programmed Rock Paper Scissors Game</h2>
@@ -32,6 +33,7 @@
32
33
 
33
34
  <section class="main-content">
34
35
 
36
+
35
37
  <h1 id="rock-paper-scissors">Rock Paper Scissors</h1>
36
38
 
37
39
  <p><strong>Table of Contents</strong></p>
@@ -122,7 +124,7 @@
122
124
  </table>
123
125
 
124
126
 
125
-
127
+
126
128
  <footer class="site-footer">
127
129
 
128
130
  <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>
data/lib/rps/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RockPaperScissors
2
- VERSION = "2.5.2"
2
+ VERSION = "2.5.3"
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.5.2"
3
+ spec.version = "2.5.3"
4
4
  spec.date = "2017-04-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.5.2
4
+ version: 2.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318
metadata.gz.sig CHANGED
Binary file