rpsg 0.3.1 → 0.3.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: c34f1a6d29f48b1b9c112369c4a067a272157a9a
4
- data.tar.gz: 2e9c8ffe4ca6d150dcc73995381c050e839f8631
3
+ metadata.gz: 54c3079280cba76cd0130a2cbcd3b97398ba22a5
4
+ data.tar.gz: be8a66ad320a48f2acbaa87dbab6862073fa56d9
5
5
  SHA512:
6
- metadata.gz: 072e6ea88830866d235b4a8b57ff1284b3ee378b86a14e6e3e0a960c3dfcc44466806cfcebcce12cd8786c8877ddb54124dd94c8b5254c25b35e7e454e811a5f
7
- data.tar.gz: 21765f7982d83893e932338b92db5a1c2b2de709d3e7adcfbbc97f8519aaa2cc3d1f331f5b974771aeea50c7fe8dfc9c8e9dca7e196b83484ebe771441bf5876
6
+ metadata.gz: db7da6467829b67a9583d18b9cf25fccc6c9aa241e16643968ae37dfe98c5f01b2b81e3338821aa99b3d049df63b20ba5e35160a4e5db895b0c3746bae686297
7
+ data.tar.gz: 3f9df0db4f9a850131c100a2fdde41213e24000e9c3df62fe9d92b21f3a75179c940b8a3ba882097b27dfb0c6105257da0eb37612db3c67382c635c7fa534672
data/.gitignore CHANGED
@@ -3,8 +3,8 @@
3
3
  *.sublime-project
4
4
  *.sublime-workspace
5
5
  *.ste
6
+ *.jekyll-metadata
6
7
  Gemfile.lock
7
- working
8
8
  rpsg_complete.rb
9
9
 
10
10
  # If gitignore is not working,
data/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  RPSG (Rock Paper Scissors Game)
2
2
  ===============================
3
3
 
4
+ <!--
5
+ * auto-gen TOC:
6
+ {:toc}
7
+ -->
8
+
4
9
  Requirements
5
10
  ------------
6
11
 
@@ -1,5 +1,5 @@
1
- Sun, 15 Oct 2017 13:25:12 -0700
1
+ Mon, 16 Oct 2017 07:42:39 -0700
2
2
  lib/Constants.rb Sat, 14 Oct 2017 09:28:48 -0700
3
- lib/Main.rb Fri, 13 Oct 2017 18:50:13 -0700
3
+ lib/Main.rb Sun, 15 Oct 2017 16:57:13 -0700
4
4
  lib/PrivateMethods.rb Thu, 12 Oct 2017 18:36:58 -0700
5
- lib/rpsg/version.rb Sat, 14 Oct 2017 11:58:49 -0700
5
+ lib/rpsg/version.rb Sun, 15 Oct 2017 13:26:50 -0700
Binary file
Binary file
Binary file
@@ -8,6 +8,9 @@ title: "README - RPSG"
8
8
  RPSG (Rock Paper Scissors Game)
9
9
  ===============================
10
10
 
11
+ * auto-gen TOC:
12
+ {:toc}
13
+
11
14
  Requirements
12
15
  ------------
13
16
 
@@ -6,6 +6,9 @@ permalink: /bundler.html
6
6
 
7
7
  # Utilizing Bundler
8
8
 
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
9
12
  > Bundler is an easy and efficient way to get all the correct gem versions installed for `RPSG`
10
13
 
11
14
  ## Windows/Mac (OSX)
@@ -10,6 +10,9 @@ contains complete RPSG code
10
10
 
11
11
  # Master Code
12
12
 
13
+ * auto-gen TOC:
14
+ {:toc}
15
+
13
16
  > The master code will look like this:
14
17
 
15
18
  ```
@@ -6,6 +6,9 @@ permalink: /index.html
6
6
 
7
7
  # Rock Paper Scissors Game
8
8
 
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
9
12
  > Welcome to my **RPSG** home site. I created my `RPSG` gem with __Ruby__, the programming language. {::comment}<br/>{:/comment}
10
13
 
11
14
  > _**Please Enjoy! :)**_{: style="text-decoration: underline;"}
@@ -6,6 +6,9 @@ permalink: /install.html
6
6
 
7
7
  # Install Guide
8
8
 
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
9
12
  > This guide will tell you how to install everything that is needed for using my **`RPSG`** gem.
10
13
 
11
14
  ## For Mac/OSX
@@ -17,17 +20,17 @@ __What you will install:__
17
20
  3. Homebrew
18
21
  4. RVM
19
22
  5. XCode Command Line Tools
20
- 5. RPSG (my RubyGem)
23
+ 6. RPSG (my RubyGem)
21
24
 
22
25
  ### Useful Skills:
23
26
 
24
- #### To open the `Terminal`:
27
+ #### To open the Terminal
25
28
 
26
29
  1. Press <kbd>Command</kbd> + <kbd>Space</kbd>
27
30
  2. Type in `Terminal`
28
31
  3. Press <kbd>Return</kbd>
29
32
 
30
- #### To Copy:
33
+ #### To Copy
31
34
 
32
35
  1. Press <kbd>Command</kbd> + <kbd>C</kbd>
33
36
 
@@ -76,7 +79,7 @@ __What you will install:__
76
79
  2. Type in `cmd`
77
80
  3. Press <kbd>Enter</kbd>
78
81
 
79
- #### To Copy:
82
+ #### To Copy
80
83
 
81
84
  1. Press <kbd>Control</kbd> + <kbd>C</kbd>
82
85
 
@@ -4,6 +4,11 @@ title: "Simple Code - RPSG"
4
4
  permalink: /simple.html
5
5
  ---
6
6
 
7
+ # Simple/Beginners RPS Code
8
+
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
7
12
  > This is what a beginner's RPS code might look like
8
13
 
9
14
  {% highlight ruby %}
@@ -0,0 +1,40 @@
1
+ ---
2
+ layout: default
3
+ title: "Tests for learning"
4
+ permalink: /test.html
5
+ ---
6
+
7
+ # Comments
8
+
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
12
+ ## Markdown
13
+
14
+ [//]: # (comment)
15
+ [//]: # "comment"
16
+
17
+ ### wrong ways
18
+
19
+ [//]: <> (this is not a markdown comment)
20
+ [//]: <> "this is not a markdown comment"
21
+ [comment]: # (this is not a markdown comment)
22
+ [comment]: # "this is not a markdown comment"
23
+ [comment]: <> (this is not a markdown comment)
24
+ [comment]: <> "this is not a markdown comment"
25
+
26
+ ## Kramdown
27
+
28
+ {::comment}
29
+ comment
30
+ {:/comment}
31
+
32
+ ## Liquid
33
+
34
+ {% comment %}
35
+ comment
36
+ {% endcomment %}
37
+
38
+ ## HTML
39
+
40
+ <!-- comment -->
@@ -6,6 +6,9 @@ permalink: /uninstall.html
6
6
 
7
7
  # How to Uninstall
8
8
 
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
9
12
  > This guide will show you how to quickly uninstall `RPSG`
10
13
 
11
14
  ## Mac (OSX)/Windows
@@ -6,6 +6,9 @@ permalink: /update.html
6
6
 
7
7
  # Update Guide
8
8
 
9
+ * auto-gen TOC:
10
+ {:toc}
11
+
9
12
  > This guide will show you how to easily update RPSG.
10
13
 
11
14
  ## Mac (OSX)/Windows
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -44,6 +44,17 @@
44
44
 
45
45
  <h1 id="utilizing-bundler">Utilizing Bundler</h1>
46
46
 
47
+ <ul id="markdown-toc">
48
+ <li><a href="#utilizing-bundler" id="markdown-toc-utilizing-bundler">Utilizing Bundler</a> <ul>
49
+ <li><a href="#windowsmac-osx" id="markdown-toc-windowsmac-osx">Windows/Mac (OSX)</a> <ul>
50
+ <li><a href="#using-bundle-install" id="markdown-toc-using-bundle-install">Using Bundle Install</a></li>
51
+ <li><a href="#using-bundle-update" id="markdown-toc-using-bundle-update">Using Bundle Update</a></li>
52
+ </ul>
53
+ </li>
54
+ </ul>
55
+ </li>
56
+ </ul>
57
+
47
58
  <blockquote>
48
59
  <p>Bundler is an easy and efficient way to get all the correct gem versions installed for <code class="highlighter-rouge">RPSG</code></p>
49
60
  </blockquote>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -46,6 +46,10 @@
46
46
 
47
47
  <h1 id="master-code">Master Code</h1>
48
48
 
49
+ <ul id="markdown-toc">
50
+ <li><a href="#master-code" id="markdown-toc-master-code">Master Code</a></li>
51
+ </ul>
52
+
49
53
  <blockquote>
50
54
  <p>The master code will look like this:</p>
51
55
  </blockquote>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -42,6 +42,10 @@
42
42
 
43
43
  <h1 id="rock-paper-scissors-game">Rock Paper Scissors Game</h1>
44
44
 
45
+ <ul id="markdown-toc">
46
+ <li><a href="#rock-paper-scissors-game" id="markdown-toc-rock-paper-scissors-game">Rock Paper Scissors Game</a></li>
47
+ </ul>
48
+
45
49
  <blockquote>
46
50
  <p>Welcome to my <strong>RPSG</strong> home site. I created my <code class="highlighter-rouge">RPSG</code> gem with <strong>Ruby</strong>, the programming language. <!-- <br/> --></p>
47
51
  </blockquote>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -44,6 +44,39 @@
44
44
 
45
45
  <h1 id="install-guide">Install Guide</h1>
46
46
 
47
+ <ul id="markdown-toc">
48
+ <li><a href="#install-guide" id="markdown-toc-install-guide">Install Guide</a> <ul>
49
+ <li><a href="#for-macosx" id="markdown-toc-for-macosx">For Mac/OSX</a> <ul>
50
+ <li><a href="#useful-skills" id="markdown-toc-useful-skills">Useful Skills:</a> <ul>
51
+ <li><a href="#to-open-the-terminal" id="markdown-toc-to-open-the-terminal">To open the Terminal</a></li>
52
+ <li><a href="#to-copy" id="markdown-toc-to-copy">To Copy</a></li>
53
+ <li><a href="#to-paste" id="markdown-toc-to-paste">To Paste</a></li>
54
+ </ul>
55
+ </li>
56
+ <li><a href="#step-1---installing-xcode-command-line-tools" id="markdown-toc-step-1---installing-xcode-command-line-tools">Step 1 - Installing XCode Command Line Tools</a></li>
57
+ <li><a href="#step-2---installing-homebrew" id="markdown-toc-step-2---installing-homebrew">Step 2 - Installing Homebrew</a></li>
58
+ <li><a href="#step-3---installing-rvmrubyrubygems" id="markdown-toc-step-3---installing-rvmrubyrubygems">Step 3 - Installing RVM/Ruby/RubyGems</a></li>
59
+ <li><a href="#step-4---installing-rpsg" id="markdown-toc-step-4---installing-rpsg">Step 4 - Installing RPSG</a></li>
60
+ <li><a href="#step-5---running-rpsg" id="markdown-toc-step-5---running-rpsg">Step 5 - Running RPSG</a></li>
61
+ </ul>
62
+ </li>
63
+ <li><a href="#for-windows" id="markdown-toc-for-windows">For Windows</a> <ul>
64
+ <li><a href="#useful-skills-1" id="markdown-toc-useful-skills-1">Useful Skills</a> <ul>
65
+ <li><a href="#opening-the-command-prompt" id="markdown-toc-opening-the-command-prompt">Opening the Command Prompt</a></li>
66
+ <li><a href="#to-copy-1" id="markdown-toc-to-copy-1">To Copy</a></li>
67
+ <li><a href="#to-paste-1" id="markdown-toc-to-paste-1">To Paste</a></li>
68
+ </ul>
69
+ </li>
70
+ <li><a href="#step-1---downloading-ruby-installer" id="markdown-toc-step-1---downloading-ruby-installer">Step 1 - Downloading Ruby Installer</a></li>
71
+ <li><a href="#step-2---installing-ruby--rubygems" id="markdown-toc-step-2---installing-ruby--rubygems">Step 2 - Installing Ruby &amp; RubyGems</a></li>
72
+ <li><a href="#step-3---installing-rpsg" id="markdown-toc-step-3---installing-rpsg">Step 3 - Installing RPSG</a></li>
73
+ <li><a href="#step-4---running-rpsg" id="markdown-toc-step-4---running-rpsg">Step 4 - Running RPSG</a></li>
74
+ </ul>
75
+ </li>
76
+ </ul>
77
+ </li>
78
+ </ul>
79
+
47
80
  <blockquote>
48
81
  <p>This guide will tell you how to install everything that is needed for using my <strong><code class="highlighter-rouge">RPSG</code></strong> gem.</p>
49
82
  </blockquote>
@@ -63,7 +96,7 @@
63
96
 
64
97
  <h3 id="useful-skills">Useful Skills:</h3>
65
98
 
66
- <h4 id="to-open-the-terminal">To open the <code class="highlighter-rouge">Terminal</code>:</h4>
99
+ <h4 id="to-open-the-terminal">To open the Terminal</h4>
67
100
 
68
101
  <ol>
69
102
  <li>Press <kbd>Command</kbd> + <kbd>Space</kbd></li>
@@ -71,7 +104,7 @@
71
104
  <li>Press <kbd>Return</kbd></li>
72
105
  </ol>
73
106
 
74
- <h4 id="to-copy">To Copy:</h4>
107
+ <h4 id="to-copy">To Copy</h4>
75
108
 
76
109
  <ol>
77
110
  <li>Press <kbd>Command</kbd> + <kbd>C</kbd></li>
@@ -138,7 +171,7 @@
138
171
  <li>Press <kbd>Enter</kbd></li>
139
172
  </ol>
140
173
 
141
- <h4 id="to-copy-1">To Copy:</h4>
174
+ <h4 id="to-copy-1">To Copy</h4>
142
175
 
143
176
  <ol>
144
177
  <li>Press <kbd>Control</kbd> + <kbd>C</kbd></li>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -44,6 +44,22 @@
44
44
 
45
45
  <h1 id="rpsg-rock-paper-scissors-game">RPSG (Rock Paper Scissors Game)</h1>
46
46
 
47
+ <ul id="markdown-toc">
48
+ <li><a href="#rpsg-rock-paper-scissors-game" id="markdown-toc-rpsg-rock-paper-scissors-game">RPSG (Rock Paper Scissors Game)</a> <ul>
49
+ <li><a href="#requirements" id="markdown-toc-requirements">Requirements</a> <ul>
50
+ <li><a href="#for-windows" id="markdown-toc-for-windows">For Windows</a></li>
51
+ <li><a href="#for-mac" id="markdown-toc-for-mac">For Mac</a></li>
52
+ </ul>
53
+ </li>
54
+ <li><a href="#how-to-use" id="markdown-toc-how-to-use">How To Use</a> <ul>
55
+ <li><a href="#windows" id="markdown-toc-windows">Windows</a></li>
56
+ <li><a href="#mac" id="markdown-toc-mac">Mac</a></li>
57
+ </ul>
58
+ </li>
59
+ </ul>
60
+ </li>
61
+ </ul>
62
+
47
63
  <h2 id="requirements">Requirements</h2>
48
64
 
49
65
  <h3 id="for-windows">For Windows</h3>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -42,7 +42,13 @@
42
42
  </section>
43
43
  <section class="main-content">
44
44
 
45
- <blockquote>
45
+ <h1 id="simplebeginners-rps-code">Simple/Beginners RPS Code</h1>
46
+
47
+ <ul id="markdown-toc">
48
+ <li><a href="#simplebeginners-rps-code" id="markdown-toc-simplebeginners-rps-code">Simple/Beginners RPS Code</a></li>
49
+ </ul>
50
+
51
+ <blockquote>
46
52
  <p>This is what a beginner’s RPS code might look like</p>
47
53
  </blockquote>
48
54
 
@@ -2,12 +2,12 @@
2
2
  <html lang="en-us">
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
- <title>Test</title>
5
+ <title>Tests for learning</title>
6
6
  <meta name="description" content="A Ruby Programmed Rock Paper Scissors Game"/>
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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -42,61 +42,34 @@
42
42
  </section>
43
43
  <section class="main-content">
44
44
 
45
- <h1 id="this-is-a-test">This is a test</h1>
45
+ <h1 id="comments">Comments</h1>
46
46
 
47
- <h1 id="this-is-a-test-1">This is a test</h1>
47
+ <ul id="markdown-toc">
48
+ <li><a href="#comments" id="markdown-toc-comments">Comments</a> <ul>
49
+ <li><a href="#markdown" id="markdown-toc-markdown">Markdown</a> <ul>
50
+ <li><a href="#wrong-ways" id="markdown-toc-wrong-ways">wrong ways</a></li>
51
+ </ul>
52
+ </li>
53
+ <li><a href="#kramdown" id="markdown-toc-kramdown">Kramdown</a></li>
54
+ <li><a href="#liquid" id="markdown-toc-liquid">Liquid</a></li>
55
+ <li><a href="#html" id="markdown-toc-html">HTML</a></li>
56
+ </ul>
57
+ </li>
58
+ </ul>
48
59
 
49
- <hr />
60
+ <h2 id="markdown">Markdown</h2>
50
61
 
51
- <p><strong>kramdown comment</strong></p>
62
+ <h3 id="wrong-ways">wrong ways</h3>
52
63
 
53
- <!-- hello world -->
64
+ <h2 id="kramdown">Kramdown</h2>
54
65
 
55
- <p><strong>liquid comment</strong></p>
66
+ <!-- comment -->
56
67
 
57
- <p><strong>html comment</strong></p>
68
+ <h2 id="liquid">Liquid</h2>
58
69
 
59
- <!--
60
- hello world
61
- -->
62
-
63
- <p><strong>markdown comments</strong></p>
64
-
65
- <hr />
66
-
67
- <p><a href="https://www.google.com/" target="_blank">Google</a>
68
- <a href="https://www.google.com/" target="_blank">Google</a></p>
69
-
70
- <hr />
71
-
72
- <div class="highlighter-rouge"><pre class="highlight"><code># code
73
- </code></pre>
74
- </div>
75
-
76
- <p><code class="highlighter-rouge">code</code></p>
77
-
78
- <h1 id="syntax-highlighting">syntax highlighting</h1>
79
-
80
- <h2 id="markdown-method">markdown method</h2>
81
-
82
- <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="nb">print</span> <span class="s2">"Hello World"</span>
83
- </code></pre>
84
- </div>
85
-
86
- <div class="language-python highlighter-rouge"><pre class="highlight"><code><span class="k">print</span> <span class="s">"hello"</span>
87
- </code></pre>
88
- </div>
89
-
90
- <h2 id="kramdown-method">kramdown method</h2>
91
-
92
- <div class="language-ruby highlighter-rouge"><pre class="highlight"><code><span class="nb">puts</span> <span class="s2">"hello world"</span>
93
- </code></pre>
94
- </div>
95
-
96
- <h2 id="liquid-method">liquid method</h2>
97
-
98
- <figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="nb">puts</span> <span class="s2">"ruby"</span></code></pre></figure>
70
+ <h2 id="html">HTML</h2>
99
71
 
72
+ <!-- comment -->
100
73
 
101
74
 
102
75
  <footer class="site-footer">
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -44,6 +44,13 @@
44
44
 
45
45
  <h1 id="how-to-uninstall">How to Uninstall</h1>
46
46
 
47
+ <ul id="markdown-toc">
48
+ <li><a href="#how-to-uninstall" id="markdown-toc-how-to-uninstall">How to Uninstall</a> <ul>
49
+ <li><a href="#mac-osxwindows" id="markdown-toc-mac-osxwindows">Mac (OSX)/Windows</a></li>
50
+ </ul>
51
+ </li>
52
+ </ul>
53
+
47
54
  <blockquote>
48
55
  <p>This guide will show you how to quickly uninstall <code class="highlighter-rouge">RPSG</code></p>
49
56
  </blockquote>
@@ -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=71a557b53af5e905f0322456201237a9ff2729d1"/>
10
+ <link rel="stylesheet" href="/assets/css/style.css?v=ac6ad727448216a7da0d1d39d1fa24bd93badc5d"/>
11
11
  <script src="assets/js/pace.min.js"></script>
12
12
 
13
13
  <link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png"/>
@@ -44,6 +44,13 @@
44
44
 
45
45
  <h1 id="update-guide">Update Guide</h1>
46
46
 
47
+ <ul id="markdown-toc">
48
+ <li><a href="#update-guide" id="markdown-toc-update-guide">Update Guide</a> <ul>
49
+ <li><a href="#mac-osxwindows" id="markdown-toc-mac-osxwindows">Mac (OSX)/Windows</a></li>
50
+ </ul>
51
+ </li>
52
+ </ul>
53
+
47
54
  <blockquote>
48
55
  <p>This guide will show you how to easily update RPSG.</p>
49
56
  </blockquote>
@@ -1,5 +1,5 @@
1
1
  # specify the version for the rubygem
2
2
  module RPSG
3
3
  # create version constant for the rubygem
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2"
5
5
  end
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "rpsg"
3
- spec.version = "0.3.1"
4
- spec.date = "2017-10-15" # format: YYYY/MM/DD
3
+ spec.version = "0.3.2"
4
+ spec.date = "2017-10-16" # format: YYYY/MM/DD
5
5
  spec.summary = "A Rock Paper Scissors Game RubyGem"
6
6
  spec.description = <<-EOF
7
7
  A Ruby-programmed rock paper scissors game.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpsg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - bag3318
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-15 00:00:00.000000000 Z
11
+ date: 2017-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -186,7 +186,7 @@ files:
186
186
  - docs/_pages/index.txt
187
187
  - docs/_pages/install.txt
188
188
  - docs/_pages/simple.txt
189
- - docs/_pages/test.txt
189
+ - docs/_pages/test.md
190
190
  - docs/_pages/uninstall.txt
191
191
  - docs/_pages/update.txt
192
192
  - docs/_sass/jekyll-theme-cayman.scss
@@ -1,73 +0,0 @@
1
- ---
2
- layout: default
3
- permalink: /test.html
4
- title: Test
5
- ---
6
-
7
- # This is a test
8
-
9
- This is a test
10
- ==============
11
-
12
- __________________________________
13
-
14
- **kramdown comment**
15
-
16
- {::comment}
17
- hello world
18
- {:/comment}
19
-
20
- **liquid comment**
21
-
22
- {% comment %}
23
- hell world
24
- {% endcomment %}
25
-
26
- **html comment**
27
-
28
- <!--
29
- hello world
30
- -->
31
-
32
- **markdown comments**
33
-
34
- [//]: # (comment)
35
- [//]: # "comment"
36
-
37
- __________________________________
38
-
39
- [Google](https://www.google.com/){: target="_blank"}
40
- <a href="https://www.google.com/" target="_blank">Google</a>
41
-
42
- __________________________________
43
-
44
- ```
45
- # code
46
- ```
47
-
48
- `code`
49
-
50
-
51
- # syntax highlighting
52
-
53
- ## markdown method
54
-
55
- ```ruby
56
- print "Hello World"
57
- ```
58
-
59
- ```python
60
- print "hello"
61
- ```
62
-
63
- ## kramdown method
64
-
65
- ~~~ruby
66
- puts "hello world"
67
- ~~~
68
-
69
- ## liquid method
70
-
71
- {% highlight ruby %}
72
- puts "ruby"
73
- {% endhighlight %}