docs/_site/Code.html in PlayRockPaperScissorsGame-2.5.5 vs docs/_site/Code.html in PlayRockPaperScissorsGame-2.5.6
- old
+ new
@@ -5,11 +5,11 @@
<title>Master Code - Play Rock Paper Scissors Game</title>
<meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
- <link rel="stylesheet" href="/assets/css/style.css?v=df71b64c1cf8a55d80140be94a8ed2e418b1acc4">
+ <link rel="stylesheet" href="/assets/css/style.css?v=4196a2f8e6ca8d2d6563f653da136eec9e325bd9">
<link rel="stylesheet" href="assets/css/pace.css" />
<script src="assets/js/pace.min.js"></script>
</head>
<body>
@@ -41,11 +41,11 @@
<blockquote>
<p>Note: the code is an executable and from my <a href="https://rubygems.org/gems/PlayRockPaperScissorsGame">RubyGem</a></p>
</blockquote>
-<p><strong><code class="highlighter-rouge">% rps</code></strong></p>
+<p><code class="highlighter-rouge">% rps</code></p>
<div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="c1">#!/usr/bin/env ruby</span>
<span class="cm">=begin
|====================================|
@@ -56,10 +56,10 @@
=end</span>
<span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
<span class="k">module</span> <span class="nn">RockPaperScissors</span>
- <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.5"</span>
+ <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.5.6"</span>
<span class="k">end</span>
<span class="c1"># call the colorize gem</span>
<span class="nb">require</span> <span class="s2">"colorized_string"</span>
<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>