homebrew-core/Formula/shellharden.rb

34 lines
1.6 KiB
Ruby

class Shellharden < Formula
desc "Bash syntax highlighter that encourages/fixes variables quoting"
homepage "https://github.com/anordal/shellharden"
url "https://github.com/anordal/shellharden/archive/v4.1.2.tar.gz"
sha256 "8e5f623f9d58e08460d3ecabb28c53f1969bed09c2526f01b5e00362a8b08e7f"
license "MPL-2.0"
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "5163964dd7eb7c2f78367aee0affc83a0982381dc275c14c537843b77bd8fd54"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "7b16335608271b3e49abfff5382c2c8c6013952c0e5f623e3525cfb8c94084fc"
sha256 cellar: :any_skip_relocation, monterey: "a12ab35740329e155ee6b614694596e405449660bc46d7623a20063885739cba"
sha256 cellar: :any_skip_relocation, big_sur: "954b7364a2db253c1fa0008f414dd8fa4831095ce1268512505e012a9bb1eaaf"
sha256 cellar: :any_skip_relocation, catalina: "85dd6255ff5f3410eafff6f5689bbcb7feac3f3f5d291139fc60597e2f46e5a5"
sha256 cellar: :any_skip_relocation, mojave: "fbe947b5d0596fb32bcbadddd904bf0b0d30c64053e00c13a41cc6ecf89d1e20"
sha256 cellar: :any_skip_relocation, high_sierra: "214a9dca5d9d013ada81c97e204c96815fd3376399c960d73973ffe4c7d653cf"
sha256 cellar: :any_skip_relocation, x86_64_linux: "2d115462336b859f378a17b608fcc19a5bffd8d0d4b7755da90ac24081e461c3"
end
depends_on "rust" => :build
def install
system "cargo", "install", *std_cargo_args
end
test do
(testpath/"script.sh").write <<~EOS
dog="poodle"
echo $dog
EOS
system bin/"shellharden", "--replace", "script.sh"
assert_match "echo \"$dog\"", (testpath/"script.sh").read
end
end