1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
"name": "AdrTools",
"description": "CLI tool for working with Architecture Decision Records",
"url": "https://github.com/npryce/adr-tools/archive/3.0.0.tar.gz",
"mirror": null,
"homepage": "https://github.com/npryce/adr-tools",
"depends": [],
"resource": [],
"conflicts": [],
"patches": [],
"install": [
"config = buildpath/\"src/adr-config\"",
"config.unlink",
"config.write <<~EOS",
"#!/bin/bash",
"echo 'adr_bin_dir=\\\"#{bin}\\\"'",
"echo 'adr_template_dir=\\\"#{prefix}\\\"'",
"EOS",
"prefix.install Dir[\"src/*.md\"]",
"bin.install Dir[\"src/*\"]",
"bash_completion.install \"autocomplete/adr\" => \"adr-tools\""
],
"version": "3.0.0",
"file": "adr-tools.rb"
}
|