diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-08-23 03:08:18 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-08-23 03:08:18 -0500 |
| commit | 0e24ba3985c18dcb02fdd362bd50a39a48d1d763 (patch) | |
| tree | 38ab70794711e714baaee01f448d16a4e50e2c14 /Formula | |
| parent | af6f83a247747efcdc9209532ca62c54a9adbf2a (diff) | |
Add git-update-agent
Diffstat (limited to 'Formula')
| -rw-r--r-- | Formula/git-update-agent.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Formula/git-update-agent.rb b/Formula/git-update-agent.rb new file mode 100644 index 0000000..7686702 --- /dev/null +++ b/Formula/git-update-agent.rb @@ -0,0 +1,19 @@ +class Planr < Formula + desc "A simple update overlay for git" + homepage "https://www.git.furkistan.com/git-update-agent/about/" + url "https://www.git.furkistan.com/git-update-agent/snapshot/git-update-agent-0.0.1.tar.xz" + version "0.0.1" + sha256 "0fefa18c3fa4485a42be05918f179d933bf528531241aa87aaca1f550d48650f" + license "GPL-2.0-only" + + depends_on "git" + + def install + bin.install "./git-update-agent" + end + + test do + # Do something more substantial once test configuration is more modular + assert_equal "0.0.1", shell_output("#{bin}/git-update-agent version").strip + end +end |
