diff --git a/Formula/todo.rb b/Formula/todo.rb new file mode 100644 index 0000000..93632f5 --- /dev/null +++ b/Formula/todo.rb @@ -0,0 +1,15 @@ +class Todo < Formula + desc "A simple CLI-based todo application" + homepage "https://github.com/hamsurang/secret" + url "https://github.com/hamsurang/secret" + version "X.Y.Z" + sha256 "SHA256_CHECKSUM" + + def install + bin.install "todo" + end + + test do + assert_match "Todo CLI vX.Y.Z", shell_output("#{bin}/todo --version") + end + end \ No newline at end of file diff --git a/test b/test new file mode 100755 index 0000000..1414af6 Binary files /dev/null and b/test differ