homebrew-core/Formula/gron.rb

33 lines
1.4 KiB
Ruby

class Gron < Formula
desc "Make JSON greppable"
homepage "https://github.com/tomnomnom/gron"
url "https://github.com/tomnomnom/gron/archive/v0.6.1.tar.gz"
sha256 "eef150a425aa4eaa8b2e36a75ee400d4247525403f79e24ed32ccb346dc653ff"
license "MIT"
head "https://github.com/tomnomnom/gron.git", branch: "master"
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "0a2b33efe431b4a44c97a0ce660fb35af397525b4785947b48bdd938770d56a4"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "d083132bef855096318805ebd6733993c444c1c6e5a203525184b5517f19da1a"
sha256 cellar: :any_skip_relocation, monterey: "4b1405e3ac3f6faf5032cc9ee800f8927b37b63ef839d6bde907c90025ba8efb"
sha256 cellar: :any_skip_relocation, big_sur: "18f72c72d99203bd58c670642d6c33fa9e1f67e6861212ba21f98b975df406f0"
sha256 cellar: :any_skip_relocation, catalina: "dc6b46a589f618ab5b2e9d4aea01bd75f0326f585085c3b1f12e266dda2e7e5d"
sha256 cellar: :any_skip_relocation, mojave: "2a0ad03c4c7dfd2098758be2c5b65f16107ce8c67b586a4679f9d871aaee09a7"
sha256 cellar: :any_skip_relocation, x86_64_linux: "e59ac188f08b0d0bd3307b8a163ba4d27f8d33f687c57b1557139bcc7b530fc7"
end
depends_on "go" => :build
def install
system "go", "build", *std_go_args(ldflags: "-s -w")
end
test do
assert_equal <<~EOS, pipe_output("#{bin}/gron", "{\"foo\":1, \"bar\":2}")
json = {};
json.bar = 2;
json.foo = 1;
EOS
end
end