class GitSecret < Formula desc "Bash-tool to store the private data inside a git repo" homepage "https://sobolevn.github.io/git-secret/" head "https://github.com/sobolevn/git-secret.git" stable do url "https://github.com/sobolevn/git-secret/archive/v0.3.2.tar.gz" sha256 "07b32b096e5ff5b4818096b1858c1f69df4684bb0f256e620514cf88f44ded85" end bottle do cellar :any_skip_relocation sha256 "2fb53e4162baa1e614c3d73dbb24257604cf8b7864f73deeba21c784c6434193" => :catalina sha256 "2fb53e4162baa1e614c3d73dbb24257604cf8b7864f73deeba21c784c6434193" => :mojave sha256 "2fb53e4162baa1e614c3d73dbb24257604cf8b7864f73deeba21c784c6434193" => :high_sierra end depends_on "gawk" depends_on "gnupg" def install system "make", "build" system "bash", "utils/install.sh", prefix end test do (testpath/"batch.gpg").write <<~EOS Key-Type: RSA Key-Length: 2048 Subkey-Type: RSA Subkey-Length: 2048 Name-Real: Testing Name-Email: testing@foo.bar Expire-Date: 1d %no-protection %commit EOS begin system Formula["gnupg"].opt_bin/"gpg", "--batch", "--gen-key", "batch.gpg" system "git", "init" system "git", "config", "user.email", "testing@foo.bar" system "git", "secret", "init" assert_match "testing@foo.bar added", shell_output("git secret tell -m") (testpath/"shh.txt").write "Top Secret" (testpath/".gitignore").append_lines "shh.txt" system "git", "secret", "add", "shh.txt" system "git", "secret", "hide" assert_predicate testpath/"shh.txt.secret", :exist? ensure system Formula["gnupg"].opt_bin/"gpgconf", "--kill", "gpg-agent" end end end