# typed: false # frozen_string_literal: true # This file was generated by GoReleaser. DO NOT EDIT. class Test < Formula desc "Some desc" homepage "https://google.com" version "0.1.3" depends_on :macos on_macos do if Hardware::CPU.intel? url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz" sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68" def install bin.install "test" end end if Hardware::CPU.arm? url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_arm64.tar.gz" sha256 "1df5fdc2bad4ed4c28fbdc77b6c542988c0dc0e2ae34e0dc912bbb1c66646c58" def install bin.install "test" end end end end