class Blackbox < Formula desc "Safely store secrets in Git/Mercurial/Subversion" homepage "https://github.com/StackExchange/blackbox" url "https://github.com/StackExchange/blackbox/archive/v1.20180618.tar.gz" sha256 "dae06417d2aeaba41cf0f0f7bd8c07c7f65914c926b61f6047b389847e53794e" bottle :unneeded depends_on "gnupg" def install libexec.install Dir["bin/*"] bin.write_exec_script Dir[libexec/"*"].select { |f| File.executable? f } 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 bin/"blackbox_initialize", "yes" add_created_key = shell_output("#{bin}/blackbox_addadmin Testing 2>&1") assert_match "", add_created_key ensure system Formula["gnupg"].opt_bin/"gpgconf", "--kill", "gpg-agent" system Formula["gnupg"].opt_bin/"gpgconf", "--homedir", "keyrings/live", "--kill", "gpg-agent" end end end