PlayRockPaperScissorsGame 2.6.1 → 2.6.2

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: d09fc6d84c5a6c4cc531edfd5deeaa0d6f0f741f
4
- data.tar.gz: cc73c6aae8dc44e0edb5590f8cf2273b66639b35
3
+ metadata.gz: da082127fc59dce3e7a67ebaf1b9622e62910310
4
+ data.tar.gz: 5d6c994c587af26d6cb4fa73a145fdb460dbe8c6
5
5
  SHA512:
6
- metadata.gz: ad810af8c356c249f46ff69fb38646947ba2cf6e21ac2c6a3102e182d832da664f2b514585d1e619f4561e5eaaaf680c8abc4af8a1a7416ee7cae399a2bdb116
7
- data.tar.gz: d5d52e7a38e1dfe8835dd3dd602abc4a61800618f6287455bfae4ac99ef5e4da3004338e2c357fec7cd32eb27882e4c6c1e9e30fadf13693e816ba4e3045a2bc
6
+ metadata.gz: bc79f12b3861c155a005af50161c6bc9caa97dcf4826526e1322e759004dc79f09069fd8342afd3785b2b53c5691d0e93030812048e547dd339387f20d0c8c18
7
+ data.tar.gz: 7daec93e311e5b5acf3a60d515d6d505e864b4326318cf2ad30e4d8d4a0fbd42a648612087c0f0b94425d8f74233d57d7cea035a83a4eb5bcad10b2a7e17b7bc
checksums.yaml.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.1"
40
+ VERSION = "2.6.2"
41
41
  end
42
42
 
43
43
  # import the colorize gem
@@ -153,4 +153,3 @@ end
153
153
  PlayRockPaperScissorsGame.new.play(2) # call the play method and pass in 3 (0, 1, 2) for the winning score
154
154
  ```
155
155
  [//]: # "end ruby"
156
-
@@ -89,7 +89,7 @@ end
89
89
  class PlayRockPaperScissorsGame
90
90
 
91
91
  module RockPaperScissors
92
- VERSION = "2.6.1"
92
+ VERSION = "2.6.2"
93
93
  end
94
94
 
95
95
  # import colorize gem
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>{{ page.title | default: site.title }}</title>
6
6
  <meta name="description" content="{{ page.description | default: site.description | default: site.github.project_tagline }}"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=' | append: site.github.build_revision | relative_url }}">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=' | append: site.github.build_revision | relative_url }}"/>
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
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>Master Code - Play Rock Paper Scissors Game</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
@@ -64,7 +64,7 @@
64
64
  <span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
65
65
 
66
66
  <span class="k">module</span> <span class="nn">RockPaperScissors</span>
67
- <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.1"</span>
67
+ <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.2"</span>
68
68
  <span class="k">end</span>
69
69
 
70
70
  <span class="c1"># import the colorize gem</span>
@@ -181,7 +181,6 @@
181
181
  </code></pre>
182
182
  </div>
183
183
 
184
-
185
184
 
186
185
  <footer class="site-footer">
187
186
 
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>Comparing Code - Play Rock Paper Scissors Game</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
@@ -138,7 +138,7 @@
138
138
  <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="k">class</span> <span class="nc">PlayRockPaperScissorsGame</span>
139
139
 
140
140
  <span class="k">module</span> <span class="nn">RockPaperScissors</span>
141
- <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.1"</span>
141
+ <span class="no">VERSION</span> <span class="o">=</span> <span class="s2">"2.6.2"</span>
142
142
  <span class="k">end</span>
143
143
 
144
144
  <span class="c1"># import colorize gem</span>
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>How to Build - Play Rock Paper Scissors Game</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>How to Test - Play Rock Paper Scissors Game</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>About - Play Rock Paper Scissors Game</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
@@ -4,10 +4,10 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>Play Rock Paper Scissors Game - Home</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <meta name="theme-color" content="#157878">
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=33b456d1e038e9f2d820f45594e51f7d7ca5d6f0">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
8
+ <meta name="theme-color" content="#157878"/>
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=13ce343f3721fc075204f26576d4788f91d928e7"/>
11
11
  <link rel="stylesheet" href="assets/css/pace.css" />
12
12
  <script src="assets/js/pace.min.js"></script>
13
13
  </head>
data/lib/rps/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RockPaperScissors
2
- VERSION = "2.6.1"
2
+ VERSION = "2.6.2"
3
3
  end
data/rps.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "PlayRockPaperScissorsGame"
3
- spec.version = "2.6.1"
4
- spec.date = "2017-05-05"
3
+ spec.version = "2.6.2"
4
+ spec.date = "2017-05-08"
5
5
  spec.summary = "A Rock Paper Scissors Ruby Gem"
6
6
  spec.description = <<-EOF
7
7
  A Ruby-programmed rock paper scissors game.
data.tar.gz.sig CHANGED
Binary file
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.1
4
+ version: 2.6.2
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-05 00:00:00.000000000 Z
33
+ date: 2017-05-08 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: bundler
@@ -141,7 +141,6 @@ files:
141
141
  - docs/_site/assets/css/pace.css
142
142
  - docs/_site/assets/css/style.css
143
143
  - docs/_site/assets/js/pace.min.js
144
- - docs/_site/assets/js/scrolling_title.js
145
144
  - docs/_site/index.html
146
145
  - docs/_site/script/bootstrap
147
146
  - docs/_site/script/cibuild
@@ -151,7 +150,6 @@ files:
151
150
  - docs/assets/css/pace.css
152
151
  - docs/assets/css/style.scss
153
152
  - docs/assets/js/pace.min.js
154
- - docs/assets/js/scrolling_title.js
155
153
  - docs/index.md
156
154
  - docs/jekyll-theme-cayman.gemspec
157
155
  - docs/script/bootstrap
metadata.gz.sig CHANGED
Binary file
File without changes
File without changes