Skip to content

Commit

Permalink
Deploying to gh-pages from @ 6611258 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Oct 3, 2023
1 parent 7bfdf96 commit 1dd591b
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 61 deletions.
10 changes: 7 additions & 3 deletions highlight.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,15 @@
font-style: italic;
}

.language-bash {
background: black;
color: #47cf73;
}

.language-elixir {
background: #282c34;
}

.language-bash {
background: black;
color: #47cf73;
.language-json {
background: #282c34;
}
56 changes: 28 additions & 28 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -3746,9 +3746,9 @@ <h2 id="implement-column-sorting"><a class="header" href="#implement-column-sort
<p>More detail in:
<a href="https://github.com/dwyl/tidy">dwyl/tidy</a></p>
<p>Here we are only documenting how we built it!</p>
<div style="break-before: page; page-break-before: always;"></div><h1 id="new-phoenix-project-setup-1"><a class="header" href="#new-phoenix-project-setup-1">New <code>Phoenix</code> Project Setup</a></h1>
<div style="break-before: page; page-break-before: always;"></div><h1 id="create-tidy-app"><a class="header" href="#create-tidy-app">Create <code>tidy</code> App!</a></h1>
<p>These are the steps we took when creating
the <code>tidy</code> <code>Phoenix</code> project.
the <code>tidy</code> App.
You can follow along at your own pace.
And/or use them as the basis for your own App(s).</p>
<p>If you feel we have skipped a step
Expand All @@ -3765,7 +3765,7 @@ <h2 id="1-create-a-new-phoenix-app-1"><a class="header" href="#1-create-a-new-ph
are there to avoid adding bloat to our app.
We don't need to send <code>email</code>,
have a fancy <code>dashboard</code> or <code>translation</code> in this <code>demo</code>.
All these <em>advanced</em> features are all covered in depth later.</p>
All these <em>advanced</em> features are all covered in other chapters.</p>
</blockquote>
<h2 id="2-setup-coverage-1"><a class="header" href="#2-setup-coverage-1">2. Setup Coverage</a></h2>
<p>So that we know which files are covered by tests,
Expand Down Expand Up @@ -3793,26 +3793,26 @@ <h2 id="2-setup-coverage-1"><a class="header" href="#2-setup-coverage-1">2. Setu
----------------
COV FILE LINES RELEVANT MISSED
0.0% lib/fields_demo.ex 9 0 0
75.0% lib/fields_demo/application.ex 36 4 1
0.0% lib/fields_demo/repo.ex 5 0 0
100.0% lib/fields_demo_web.ex 111 2 0
15.9% lib/fields_demo_web/components/core_comp 661 151 127
0.0% lib/fields_demo_web/components/layouts.e 5 0 0
100.0% lib/fields_demo_web/controllers/error_ht 19 1 0
100.0% lib/fields_demo_web/controllers/error_js 15 1 0
100.0% lib/fields_demo_web/controllers/page_con 9 1 0
0.0% lib/fields_demo_web/controllers/page_htm 5 0 0
0.0% lib/fields_demo_web/endpoint.ex 47 0 0
66.7% lib/fields_demo_web/router.ex 27 3 1
80.0% lib/fields_demo_web/telemetry.ex 92 5 1
75.0% lib/tidy/application.ex 36 4 1
0.0% lib/tidy/repo.ex 5 0 0
100.0% lib/tidy_web.ex 111 2 0
15.9% lib/tidy_web/components/core_comp 661 151 127
0.0% lib/tidy_web/components/layouts.e 5 0 0
100.0% lib/tidy_web/controllers/error_ht 19 1 0
100.0% lib/tidy_web/controllers/error_js 15 1 0
100.0% lib/tidy_web/controllers/page_con 9 1 0
0.0% lib/tidy_web/controllers/page_htm 5 0 0
0.0% lib/tidy_web/endpoint.ex 47 0 0
66.7% lib/tidy_web/router.ex 27 3 1
80.0% lib/tidy_web/telemetry.ex 92 5 1
100.0% test/support/conn_case.ex 38 2 0
28.6% test/support/data_case.ex 58 7 5
[TOTAL] 23.7%
----------------
</code></pre>
<p>Not great.
But most of the untested code is in:
<code>lib/fields_demo_web/components/core_components.ex</code>
<code>lib/tidy_web/components/core_components.ex</code>
which has <code>661</code> lines
and we aren't going to <em>use</em> in this project ...</p>
<h3 id="21-ignore-unused-system-files-1"><a class="header" href="#21-ignore-unused-system-files-1">2.1 Ignore Unused &quot;System&quot; Files</a></h3>
Expand All @@ -3823,9 +3823,9 @@ <h3 id="21-ignore-unused-system-files-1"><a class="header" href="#21-ignore-unus
&quot;minimum_coverage&quot;: 100
},
&quot;skip_files&quot;: [
&quot;lib/fields_demo/application.ex&quot;,
&quot;lib/fields_demo_web/components/core_components.ex&quot;,
&quot;lib/fields_demo_web/telemetry.ex&quot;,
&quot;lib/tidy/application.ex&quot;,
&quot;lib/tidy_web/components/core_components.ex&quot;,
&quot;lib/tidy_web/telemetry.ex&quot;,
&quot;test/&quot;
]
}
Expand All @@ -3845,15 +3845,15 @@ <h3 id="21-ignore-unused-system-files-1"><a class="header" href="#21-ignore-unus
----------------
COV FILE LINES RELEVANT MISSED
100.0% lib/fields_demo.ex 9 0 0
100.0% lib/fields_demo/repo.ex 5 0 0
100.0% lib/fields_demo_web.ex 111 2 0
100.0% lib/fields_demo_web/components/layouts.e 5 0 0
100.0% lib/fields_demo_web/controllers/error_ht 19 1 0
100.0% lib/fields_demo_web/controllers/error_js 15 1 0
100.0% lib/fields_demo_web/controllers/page_con 9 1 0
100.0% lib/fields_demo_web/controllers/page_htm 5 0 0
100.0% lib/fields_demo_web/endpoint.ex 47 0 0
100.0% lib/fields_demo_web/router.ex 23 2 0
100.0% lib/tidy/repo.ex 5 0 0
100.0% lib/tidy_web.ex 111 2 0
100.0% lib/tidy_web/components/layouts.e 5 0 0
100.0% lib/tidy_web/controllers/error_ht 19 1 0
100.0% lib/tidy_web/controllers/error_js 15 1 0
100.0% lib/tidy_web/controllers/page_con 9 1 0
100.0% lib/tidy_web/controllers/page_htm 5 0 0
100.0% lib/tidy_web/endpoint.ex 47 0 0
100.0% lib/tidy_web/router.ex 23 2 0
[TOTAL] 100.0%
----------------
</code></pre>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions tidy/01-setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ <h1 class="menu-title">dwyl book</h1>

<div id="content" class="content">
<main>
<h1 id="new-phoenix-project-setup"><a class="header" href="#new-phoenix-project-setup">New <code>Phoenix</code> Project Setup</a></h1>
<h1 id="create-tidy-app"><a class="header" href="#create-tidy-app">Create <code>tidy</code> App!</a></h1>
<p>These are the steps we took when creating
the <code>tidy</code> <code>Phoenix</code> project.
the <code>tidy</code> App.
You can follow along at your own pace.
And/or use them as the basis for your own App(s).</p>
<p>If you feel we have skipped a step
Expand All @@ -206,7 +206,7 @@ <h2 id="1-create-a-new-phoenix-app"><a class="header" href="#1-create-a-new-phoe
are there to avoid adding bloat to our app.
We don't need to send <code>email</code>,
have a fancy <code>dashboard</code> or <code>translation</code> in this <code>demo</code>.
All these <em>advanced</em> features are all covered in depth later.</p>
All these <em>advanced</em> features are all covered in other chapters.</p>
</blockquote>
<h2 id="2-setup-coverage"><a class="header" href="#2-setup-coverage">2. Setup Coverage</a></h2>
<p>So that we know which files are covered by tests,
Expand Down Expand Up @@ -234,26 +234,26 @@ <h2 id="2-setup-coverage"><a class="header" href="#2-setup-coverage">2. Setup Co
----------------
COV FILE LINES RELEVANT MISSED
0.0% lib/fields_demo.ex 9 0 0
75.0% lib/fields_demo/application.ex 36 4 1
0.0% lib/fields_demo/repo.ex 5 0 0
100.0% lib/fields_demo_web.ex 111 2 0
15.9% lib/fields_demo_web/components/core_comp 661 151 127
0.0% lib/fields_demo_web/components/layouts.e 5 0 0
100.0% lib/fields_demo_web/controllers/error_ht 19 1 0
100.0% lib/fields_demo_web/controllers/error_js 15 1 0
100.0% lib/fields_demo_web/controllers/page_con 9 1 0
0.0% lib/fields_demo_web/controllers/page_htm 5 0 0
0.0% lib/fields_demo_web/endpoint.ex 47 0 0
66.7% lib/fields_demo_web/router.ex 27 3 1
80.0% lib/fields_demo_web/telemetry.ex 92 5 1
75.0% lib/tidy/application.ex 36 4 1
0.0% lib/tidy/repo.ex 5 0 0
100.0% lib/tidy_web.ex 111 2 0
15.9% lib/tidy_web/components/core_comp 661 151 127
0.0% lib/tidy_web/components/layouts.e 5 0 0
100.0% lib/tidy_web/controllers/error_ht 19 1 0
100.0% lib/tidy_web/controllers/error_js 15 1 0
100.0% lib/tidy_web/controllers/page_con 9 1 0
0.0% lib/tidy_web/controllers/page_htm 5 0 0
0.0% lib/tidy_web/endpoint.ex 47 0 0
66.7% lib/tidy_web/router.ex 27 3 1
80.0% lib/tidy_web/telemetry.ex 92 5 1
100.0% test/support/conn_case.ex 38 2 0
28.6% test/support/data_case.ex 58 7 5
[TOTAL] 23.7%
----------------
</code></pre>
<p>Not great.
But most of the untested code is in:
<code>lib/fields_demo_web/components/core_components.ex</code>
<code>lib/tidy_web/components/core_components.ex</code>
which has <code>661</code> lines
and we aren't going to <em>use</em> in this project ...</p>
<h3 id="21-ignore-unused-system-files"><a class="header" href="#21-ignore-unused-system-files">2.1 Ignore Unused &quot;System&quot; Files</a></h3>
Expand All @@ -264,9 +264,9 @@ <h3 id="21-ignore-unused-system-files"><a class="header" href="#21-ignore-unused
&quot;minimum_coverage&quot;: 100
},
&quot;skip_files&quot;: [
&quot;lib/fields_demo/application.ex&quot;,
&quot;lib/fields_demo_web/components/core_components.ex&quot;,
&quot;lib/fields_demo_web/telemetry.ex&quot;,
&quot;lib/tidy/application.ex&quot;,
&quot;lib/tidy_web/components/core_components.ex&quot;,
&quot;lib/tidy_web/telemetry.ex&quot;,
&quot;test/&quot;
]
}
Expand All @@ -286,15 +286,15 @@ <h3 id="21-ignore-unused-system-files"><a class="header" href="#21-ignore-unused
----------------
COV FILE LINES RELEVANT MISSED
100.0% lib/fields_demo.ex 9 0 0
100.0% lib/fields_demo/repo.ex 5 0 0
100.0% lib/fields_demo_web.ex 111 2 0
100.0% lib/fields_demo_web/components/layouts.e 5 0 0
100.0% lib/fields_demo_web/controllers/error_ht 19 1 0
100.0% lib/fields_demo_web/controllers/error_js 15 1 0
100.0% lib/fields_demo_web/controllers/page_con 9 1 0
100.0% lib/fields_demo_web/controllers/page_htm 5 0 0
100.0% lib/fields_demo_web/endpoint.ex 47 0 0
100.0% lib/fields_demo_web/router.ex 23 2 0
100.0% lib/tidy/repo.ex 5 0 0
100.0% lib/tidy_web.ex 111 2 0
100.0% lib/tidy_web/components/layouts.e 5 0 0
100.0% lib/tidy_web/controllers/error_ht 19 1 0
100.0% lib/tidy_web/controllers/error_js 15 1 0
100.0% lib/tidy_web/controllers/page_con 9 1 0
100.0% lib/tidy_web/controllers/page_htm 5 0 0
100.0% lib/tidy_web/endpoint.ex 47 0 0
100.0% lib/tidy_web/router.ex 23 2 0
[TOTAL] 100.0%
----------------
</code></pre>
Expand Down

0 comments on commit 1dd591b

Please sign in to comment.