class Lolcat < Formula desc "Rainbows and unicorns in your console!" homepage "https://github.com/busyloop/lolcat" url "https://github.com/busyloop/lolcat.git", tag: "v100.0.1", revision: "27441adfb51bc16073d65dbef300c8d3d7e86dc7" license "BSD-3-Clause" bottle do sha256 cellar: :any_skip_relocation, arm64_ventura: "f9525a05daefb242035ef0eebe35f63b4a6fd1c90b8a2d7aaec906d770aa4997" sha256 cellar: :any_skip_relocation, arm64_monterey: "f9525a05daefb242035ef0eebe35f63b4a6fd1c90b8a2d7aaec906d770aa4997" sha256 cellar: :any_skip_relocation, arm64_big_sur: "9a910107509f0e2b478d97837822deb1297155bcba4622b696ef19d424382346" sha256 cellar: :any_skip_relocation, ventura: "f9525a05daefb242035ef0eebe35f63b4a6fd1c90b8a2d7aaec906d770aa4997" sha256 cellar: :any_skip_relocation, monterey: "f9525a05daefb242035ef0eebe35f63b4a6fd1c90b8a2d7aaec906d770aa4997" sha256 cellar: :any_skip_relocation, big_sur: "df80796c28d2084b48ee2045954dbb2685eaa46935238b6b2a2cd1f41a546860" sha256 cellar: :any_skip_relocation, catalina: "c0e179d579938e4301f04b4896bb2c234f4b643e53e53cbd4a7f796978d2ea6d" sha256 cellar: :any_skip_relocation, mojave: "ac56190c6ec7e25d49f979aff7f6cc3e45820002ef22fbc444196b64de2590f9" sha256 cellar: :any_skip_relocation, high_sierra: "1eb5cf4cd5565e07659f37e2531be1e72b0e2e8e57587af229e230fa00315ed3" sha256 cellar: :any_skip_relocation, x86_64_linux: "8110115e78f3bcb1aca5f3aee73cb81726e59a1293236a780ce99af733a8f524" end uses_from_macos "ruby", since: :high_sierra def install ENV["GEM_HOME"] = libexec system "gem", "build", "lolcat.gemspec" system "gem", "install", "lolcat-#{version}.gem" bin.install libexec/"bin/lolcat" bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV["GEM_HOME"]) man6.install "man/lolcat.6" end test do (testpath/"test.txt").write <<~EOS This is a test EOS system bin/"lolcat", "test.txt" end end