mirror of
https://github.com/ivuorinen/homebrew-tap.git
synced 2026-03-02 13:56:25 +00:00
Initial Homebrew tap setup with automated documentation
- Add formula parser with Ruby AST parsing - Add GitHub Actions CI/CD workflows - Add Jekyll-based documentation site - Add RuboCop and Dependabot configuration - Add example formula for demonstration
This commit is contained in:
27
docs/formulae.md
Normal file
27
docs/formulae.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
layout: default
|
||||
title: All Formulae
|
||||
---
|
||||
|
||||
# All Formulae
|
||||
|
||||
{% if site.data.formulae.formulae.size > 0 %}
|
||||
{% for formula in site.data.formulae.formulae %}
|
||||
## [{{ formula.name }}]({{ '/formula/' | append: formula.name | relative_url }})
|
||||
|
||||
{% if formula.description %}{{ formula.description }}{% endif %}
|
||||
|
||||
**Installation:**
|
||||
```bash
|
||||
brew install {{ formula.name }}
|
||||
```
|
||||
|
||||
{% if formula.dependencies.size > 0 %}
|
||||
**Dependencies:** {{ formula.dependencies | join: ', ' }}
|
||||
{% endif %}
|
||||
|
||||
---
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
No formulae available yet. Add some formulae to the `Formula/` directory to get started.
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user