UNPKG

@borksh/bork

Version:

Bash-Operated Reconciling Kludge

30 lines (26 loc) 983 B
--- layout: default title: Assertion types --- <h1>Assertion types</h1> <p>Here is an index of Bork assertion types and documentation on how to use them. If you are adding a type to Bork, please ensure you document it by creating a file in <code>docs/_types</code>.</p> <ul> {% for type in site.types %} <li><a href="#type-{{ type.name }}">{{ type.name }}</a></li> {% endfor %} </ul> {% for type in site.types %} <h2 id="type-{{ type.name }}">{{ type.name }}</h2> <div class="type_meta"> {% if type.version %} <span class="version">Available since <strong>{{ type.version }}</strong></span> {% endif %} {% if type.inspects %} <span class="inspects" title="Use bork inspect to generate assertions matching your current system configuration">Inspectable</span> {% endif %} {% if type.removable %} <span class="removable" title="Bork can uninstall or remove configuration of this type">Removable</span> {% endif %} </div> {{ type.content }} {% endfor %}