PlayRockPaperScissorsGame 2.5.8 → 2.5.9
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 +3 -3
- data/docs/Comparing_Code.md +1 -1
- data/docs/_site/CODE_OF_CONDUCT.html +1 -1
- data/docs/_site/CONTRIBUTING.html +1 -1
- data/docs/_site/Code.html +4 -4
- data/docs/_site/Comparing_Code.html +2 -2
- data/docs/_site/How_to_Build.html +1 -1
- data/docs/_site/Testing.html +1 -1
- data/docs/_site/about.html +2 -2
- data/docs/_site/index.html +1 -1
- data/docs/about.md +1 -1
- data/lib/rps/version.rb +1 -1
- data/rps.gemspec +2 -2
- metadata +2 -2
- 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: b679bb440c577e2be357d3dde0884b9ce82664fe
|
4
|
+
data.tar.gz: 9cb707ecef1756d6b95ed6bcf2d64be66ee6285a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3146902ef6b855d24c354c6c57740b54e07c011a76e76ac95afa5694da74616746c7b903beae98ec9ea329e3e8ff92644e75cf962c266dac7852d7ee34a4a99
|
7
|
+
data.tar.gz: 45e2ab18b4aff9ca17f99ad05efb918745e69a1257439ac7abaa1dd3a70e9ba35d5c34c8f9fd64ebc7ea3b43277b034879bb54d7808f9f64b78e01e722109c92
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/docs/Code.md
CHANGED
@@ -4,7 +4,7 @@ title: Master Code - Play Rock Paper Scissors Game
|
|
4
4
|
permalink: /Code.html
|
5
5
|
---
|
6
6
|
|
7
|
-
Master Code
|
7
|
+
Master Code-
|
8
8
|
===========
|
9
9
|
|
10
10
|
**The master code will look like this:**
|
@@ -30,10 +30,10 @@ Master Code
|
|
30
30
|
class PlayRockPaperScissorsGame
|
31
31
|
|
32
32
|
module RockPaperScissors
|
33
|
-
VERSION = "2.5.
|
33
|
+
VERSION = "2.5.9"
|
34
34
|
end
|
35
35
|
|
36
|
-
#
|
36
|
+
# import the colorize gem
|
37
37
|
require "colorized_string"
|
38
38
|
ColorizedString.colors # import colors; ex: red, green, blue from colorize gem
|
39
39
|
ColorizedString.modes # import modes; ex: bold, italic, underline from colorize gem
|
data/docs/Comparing_Code.md
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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
@@ -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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
@@ -35,7 +35,7 @@
|
|
35
35
|
|
36
36
|
<section class="main-content">
|
37
37
|
|
38
|
-
<h1 id="master-code">Master Code
|
38
|
+
<h1 id="master-code-">Master Code-</h1>
|
39
39
|
|
40
40
|
<p><strong>The master code will look like this:</strong></p>
|
41
41
|
|
@@ -58,10 +58,10 @@
|
|
58
58
|
<span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
|
59
59
|
|
60
60
|
<span class="k">module</span> <span class="nn">RockPaperScissors</span>
|
61
|
-
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.
|
61
|
+
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.9"</span>
|
62
62
|
<span class="k">end</span>
|
63
63
|
|
64
|
-
<span class="c1">#
|
64
|
+
<span class="c1"># import the colorize gem</span>
|
65
65
|
<span class="nb">require</span> <span class="s2">"colorized_string"</span>
|
66
66
|
<span class="no">ColorizedString</span><span class="p">.</span><span class="nf">colors</span> <span class="c1"># import colors; ex: red, green, blue from colorize gem</span>
|
67
67
|
<span class="no">ColorizedString</span><span class="p">.</span><span class="nf">modes</span> <span class="c1"># import modes; ex: bold, italic, underline from colorize gem</span>
|
@@ -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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
@@ -139,7 +139,7 @@
|
|
139
139
|
<div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
|
140
140
|
|
141
141
|
<span class="k">module</span> <span class="nn">RockPaperScissors</span>
|
142
|
-
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.
|
142
|
+
<span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.9"</span>
|
143
143
|
<span class="k">end</span>
|
144
144
|
|
145
145
|
<span class="c1"># import colorize gem</span>
|
@@ -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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
@@ -46,7 +46,7 @@ I have decided to code a Ruby-programmed RPS game that uses full CLI<sup>2</sup>
|
|
46
46
|
|
47
47
|
<h2 id="the-code">The Code</h2>
|
48
48
|
|
49
|
-
<p>I didn’t want to make code that just yielded a bunch of <code class="highlighter-rouge">if</code>, <code class="highlighter-rouge">elsif</code>, and <code class="highlighter-rouge">else</code> statements. Instead, I strived toward a more professionally structured and modularized code. See the <a href="Comparing_Code">comparing code</a> page for more information about this subject matter.</p>
|
49
|
+
<p>I didn’t want to make code that just yielded a bunch of <code class="highlighter-rouge">if</code>, <code class="highlighter-rouge">elsif</code>, and <code class="highlighter-rouge">else</code> statements. Instead, I strived toward a more professionally structured and modularized code. See the <a href="Comparing_Code">comparing code</a> page for more detailed information about this subject matter.</p>
|
50
50
|
|
51
51
|
<hr />
|
52
52
|
|
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=7d19f566a4f87a97f887b9a0a7fc85f155a5c1b4">
|
11
11
|
<link rel="stylesheet" href="assets/css/pace.css" />
|
12
12
|
<script src="assets/js/pace.min.js"></script>
|
13
13
|
</head>
|
data/docs/about.md
CHANGED
@@ -15,7 +15,7 @@ Ruby is a programming language that has been around for a little over 2 decades.
|
|
15
15
|
|
16
16
|
## The Code
|
17
17
|
|
18
|
-
I didn't want to make code that just yielded a bunch of `if`, `elsif`, and `else` statements. Instead, I strived toward a more professionally structured and modularized code. See the [comparing code](Comparing_Code) page for more information about this subject matter.
|
18
|
+
I didn't want to make code that just yielded a bunch of `if`, `elsif`, and `else` statements. Instead, I strived toward a more professionally structured and modularized code. See the [comparing code](Comparing_Code) page for more detailed information about this subject matter.
|
19
19
|
|
20
20
|
________
|
21
21
|
|
data/lib/rps/version.rb
CHANGED
data/rps.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "PlayRockPaperScissorsGame"
|
3
|
-
spec.version = "2.5.
|
4
|
-
spec.date = "2017-05-
|
3
|
+
spec.version = "2.5.9"
|
4
|
+
spec.date = "2017-05-04"
|
5
5
|
spec.summary = "A Rock Paper Scissors Ruby Gem"
|
6
6
|
spec.description = <<-EOF
|
7
7
|
A Ruby-programmed rock paper scissors game.
|
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.
|
4
|
+
version: 2.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bag3318
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
ft+uhriUZSVDBJRLSlrQEH2f0866a9dA4oUmvvFU46Mh6pozDjOcLJIp/tCnbVOc
|
31
31
|
HSdXPrjfOoDbhBPH/4wUd5P0rDoNKN1hxH4SzA==
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date: 2017-05-
|
33
|
+
date: 2017-05-04 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: bundler
|
metadata.gz.sig
CHANGED
Binary file
|