homebrew-core/Formula/adr-tools.rb

30 lines
830 B
Ruby

class AdrTools < Formula
desc "CLI tool for working with Architecture Decision Records"
homepage "https://github.com/npryce/adr-tools"
url "https://github.com/npryce/adr-tools/archive/2.1.0.tar.gz"
sha256 "1ef028cfeaa1b262a5c62845aa8965be169705370983f9ff73b17ec77bf75f70"
bottle :unneeded
def install
config = buildpath/"src/adr-config"
# Unlink and re-write to matches homebrew's installation conventions
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/*"]
end
test do
file = "0001-record-architecture-decisions.md"
assert_match file, shell_output("#{bin}/adr-init")
assert_match file, shell_output("#{bin}/adr-list")
end
end