1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-21 12:17:03 +02:00
goreleaser/internal/pipe/brew/testdata/TestFullFormulaeMacOSOnly.rb.golden

28 lines
696 B
Ruby
Raw Permalink Normal View History

# 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_intel do
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
on_arm do
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