forked from ThakaSartu/sartu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rubocop to work with vendor/ gems
- Loading branch information
Parker Moore
committed
Jul 15, 2021
1 parent
ce82bec
commit 42645df
Showing
8 changed files
with
180 additions
and
2 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...yll/Cache/Jekyll--Cache/b7/9606fb3afea5bd1609ed40b622142f1c98125abcfe89a76a661b0e8e343910
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I"�{"title"=>"Hacker theme", "description"=>"Hacker is a theme for GitHub Pages.", "show_downloads"=>true, "google_analytics"=>nil, "theme"=>"jekyll-theme-hacker", "source"=>"/Users/parkr/github/pages-themes-maintenance-scripts/repos/hacker", "destination"=>"/Users/parkr/github/pages-themes-maintenance-scripts/repos/hacker/_site", "collections_dir"=>"", "cache_dir"=>".jekyll-cache", "plugins_dir"=>"_plugins", "layouts_dir"=>"_layouts", "data_dir"=>"_data", "includes_dir"=>"_includes", "collections"=>{"posts"=>{"output"=>true, "permalink"=>"/:categories/:year/:month/:day/:title:output_ext"}}, "safe"=>false, "include"=>[".htaccess"], "exclude"=>[".sass-cache", ".jekyll-cache", "gemfiles", "Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"], "keep_files"=>[".git", ".svn"], "encoding"=>"utf-8", "markdown_ext"=>"markdown,mkdown,mkdn,mkd,md", "strict_front_matter"=>false, "show_drafts"=>nil, "limit_posts"=>0, "future"=>false, "unpublished"=>false, "whitelist"=>[], "plugins"=>[], "markdown"=>"kramdown", "highlighter"=>"rouge", "lsi"=>false, "excerpt_separator"=>"\n\n", "incremental"=>false, "detach"=>false, "port"=>"4000", "host"=>"127.0.0.1", "baseurl"=>nil, "show_dir_listing"=>false, "permalink"=>"date", "paginate_path"=>"/page:num", "timezone"=>nil, "quiet"=>false, "verbose"=>false, "defaults"=>[], "liquid"=>{"error_mode"=>"warn", "strict_filters"=>false, "strict_variables"=>false}, "kramdown"=>{"auto_ids"=>true, "toc_levels"=>[1, 2, 3, 4, 5, 6], "entity_output"=>"as_char", "smart_quotes"=>"lsquo,rsquo,ldquo,rdquo", "input"=>"GFM", "hard_wrap"=>false, "guess_lang"=>true, "footnote_nr"=>1, "show_warnings"=>false}, "serving"=>false}:ET |
164 changes: 164 additions & 0 deletions
164
...l--Converters--Markdown/40/0bf066babc9ca325e8a3414ac85400b69176e0ef6f4928f74df96f2dbab25e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
I"P<p>Text can be <strong>bold</strong>, <em>italic</em>, <del>strikethrough</del> or <code class="language-plaintext highlighter-rouge">keyword</code>.</p> | ||
|
||
<p><a href="./another-page.html">Link to another page</a>.</p> | ||
|
||
<p>There should be whitespace between paragraphs.</p> | ||
|
||
<p>There should be whitespace between paragraphs. We recommend including a README, or a file with information about your project.</p> | ||
|
||
<h1 id="header-1">Header 1</h1> | ||
|
||
<p>This is a normal paragraph following a header. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.</p> | ||
|
||
<h2 id="header-2">Header 2</h2> | ||
|
||
<blockquote> | ||
<p>This is a blockquote following a header.</p> | ||
|
||
<p>When something is important enough, you do it even if the odds are not in your favor.</p> | ||
</blockquote> | ||
|
||
<h3 id="header-3">Header 3</h3> | ||
|
||
<div class="language-js highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">// Javascript code with syntax highlighting.</span> | ||
<span class="kd">var</span> <span class="nx">fun</span> <span class="o">=</span> <span class="kd">function</span> <span class="nx">lang</span><span class="p">(</span><span class="nx">l</span><span class="p">)</span> <span class="p">{</span> | ||
<span class="nx">dateformat</span><span class="p">.</span><span class="nx">i18n</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="dl">'</span><span class="s1">./lang/</span><span class="dl">'</span> <span class="o">+</span> <span class="nx">l</span><span class="p">)</span> | ||
<span class="k">return</span> <span class="kc">true</span><span class="p">;</span> | ||
<span class="p">}</span> | ||
</code></pre></div></div> | ||
|
||
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1"># Ruby code with syntax highlighting</span> | ||
<span class="no">GitHubPages</span><span class="o">::</span><span class="no">Dependencies</span><span class="p">.</span><span class="nf">gems</span><span class="p">.</span><span class="nf">each</span> <span class="k">do</span> <span class="o">|</span><span class="n">gem</span><span class="p">,</span> <span class="n">version</span><span class="o">|</span> | ||
<span class="n">s</span><span class="p">.</span><span class="nf">add_dependency</span><span class="p">(</span><span class="n">gem</span><span class="p">,</span> <span class="s2">"= </span><span class="si">#{</span><span class="n">version</span><span class="si">}</span><span class="s2">"</span><span class="p">)</span> | ||
<span class="k">end</span> | ||
</code></pre></div></div> | ||
|
||
<h4 id="header-4">Header 4</h4> | ||
|
||
<ul> | ||
<li>This is an unordered list following a header.</li> | ||
<li>This is an unordered list following a header.</li> | ||
<li>This is an unordered list following a header.</li> | ||
</ul> | ||
|
||
<h5 id="header-5">Header 5</h5> | ||
|
||
<ol> | ||
<li>This is an ordered list following a header.</li> | ||
<li>This is an ordered list following a header.</li> | ||
<li>This is an ordered list following a header.</li> | ||
</ol> | ||
|
||
<h6 id="header-6">Header 6</h6> | ||
|
||
<table> | ||
<thead> | ||
<tr> | ||
<th style="text-align: left">head1</th> | ||
<th style="text-align: left">head two</th> | ||
<th style="text-align: left">three</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td style="text-align: left">ok</td> | ||
<td style="text-align: left">good swedish fish</td> | ||
<td style="text-align: left">nice</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: left">out of stock</td> | ||
<td style="text-align: left">good and plenty</td> | ||
<td style="text-align: left">nice</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: left">ok</td> | ||
<td style="text-align: left">good <code class="language-plaintext highlighter-rouge">oreos</code></td> | ||
<td style="text-align: left">hmm</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align: left">ok</td> | ||
<td style="text-align: left">good <code class="language-plaintext highlighter-rouge">zoute</code> drop</td> | ||
<td style="text-align: left">yumm</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<h3 id="theres-a-horizontal-rule-below-this">There’s a horizontal rule below this.</h3> | ||
|
||
<hr /> | ||
|
||
<h3 id="here-is-an-unordered-list">Here is an unordered list:</h3> | ||
|
||
<ul> | ||
<li>Item foo</li> | ||
<li>Item bar</li> | ||
<li>Item baz</li> | ||
<li>Item zip</li> | ||
</ul> | ||
|
||
<h3 id="and-an-ordered-list">And an ordered list:</h3> | ||
|
||
<ol> | ||
<li>Item one</li> | ||
<li>Item two</li> | ||
<li>Item three</li> | ||
<li>Item four</li> | ||
</ol> | ||
|
||
<h3 id="and-a-nested-list">And a nested list:</h3> | ||
|
||
<ul> | ||
<li>level 1 item | ||
<ul> | ||
<li>level 2 item</li> | ||
<li>level 2 item | ||
<ul> | ||
<li>level 3 item</li> | ||
<li>level 3 item</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</li> | ||
<li>level 1 item | ||
<ul> | ||
<li>level 2 item</li> | ||
<li>level 2 item</li> | ||
<li>level 2 item</li> | ||
</ul> | ||
</li> | ||
<li>level 1 item | ||
<ul> | ||
<li>level 2 item</li> | ||
<li>level 2 item</li> | ||
</ul> | ||
</li> | ||
<li>level 1 item</li> | ||
</ul> | ||
|
||
<h3 id="small-image">Small image</h3> | ||
|
||
<p><img src="https://github.githubassets.com/images/icons/emoji/octocat.png" alt="Octocat" /></p> | ||
|
||
<h3 id="large-image">Large image</h3> | ||
|
||
<p><img src="https://guides.github.com/activities/hello-world/branching.png" alt="Branching" /></p> | ||
|
||
<h3 id="definition-lists-can-be-used-with-html-syntax">Definition lists can be used with HTML syntax.</h3> | ||
|
||
<dl> | ||
<dt>Name</dt> | ||
<dd>Godzilla</dd> | ||
<dt>Born</dt> | ||
<dd>1952</dd> | ||
<dt>Birthplace</dt> | ||
<dd>Japan</dd> | ||
<dt>Color</dt> | ||
<dd>Green</dd> | ||
</dl> | ||
|
||
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. | ||
</code></pre></div></div> | ||
|
||
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>The final element. | ||
</code></pre></div></div> | ||
:ET |
2 changes: 2 additions & 0 deletions
2
...l--Converters--Markdown/5a/f69dcdc03872b641035cf1482881e8d7fbe1db52164ec903a8ccb9f4fc254e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
I"0<p>Hacker is a theme for GitHub Pages.</p> | ||
:ET |
6 changes: 6 additions & 0 deletions
6
...l--Converters--Markdown/7b/a6a87a3786354065eb2e1de697a5bccad4d621e1201c38b8ae4fed6a8a9dd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
I"v<h2 id="welcome-to-another-page">Welcome to another page</h2> | ||
|
||
<p><em>yay</em></p> | ||
|
||
<p><a href="./">back</a></p> | ||
:ET |
2 changes: 2 additions & 0 deletions
2
...l--Converters--Markdown/c0/4247c0c170f2781879600b56f4fed73dd469e64dc4bc3e17b277407ee85469
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
I"<p>Hacker theme</p> | ||
:ET |
2 changes: 2 additions & 0 deletions
2
...l--Converters--Markdown/e3/b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
I" | ||
:EF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ inherit_gem: | |
AllCops: | ||
Exclude: | ||
- _site/**/* | ||
- vendor/**/* | ||
|
||
Layout/LineLength: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters