diff --git a/Formula/saas.rb b/Formula/saas.rb new file mode 100644 index 0000000..ea4c7a1 --- /dev/null +++ b/Formula/saas.rb @@ -0,0 +1,51 @@ +# typed: false +# frozen_string_literal: true + +# This file was generated by GoReleaser. DO NOT EDIT. +class Saas < Formula + desc "Command-line interface for managing and interacting with The SaaS Company's cloud services, providing streamlined access to resources and operations." + homepage "https://thesaas.company.io/docs" + version "0.0.17" + + on_macos do + on_intel do + url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Darwin_x86_64.tar.gz" + sha256 "558b6295ad94f31aeb47a9697d6bcf9eeaf0793822c35121eb945886409b3e2f" + + def install + bin.install "saas" + end + end + on_arm do + url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Darwin_arm64.tar.gz" + sha256 "7e925951ba4e22d513831dde6b9ea7e87d66f891c370c37460f2f9abe4c27417" + + def install + bin.install "saas" + end + end + end + + on_linux do + on_intel do + if Hardware::CPU.is_64_bit? + url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Linux_x86_64.tar.gz" + sha256 "cb2f4289606c19507f5ccabbae162ab1374d7ca5ae278a8acc73ac9aaa43ef25" + + def install + bin.install "saas" + end + end + end + on_arm do + if Hardware::CPU.is_64_bit? + url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Linux_arm64.tar.gz" + sha256 "db70d48df39cab8889e40e1b35b8733383b2f6c8d8706b254dbf1b4ce82bba8d" + + def install + bin.install "saas" + end + end + end + end +end