-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquickbase-cli.rb
More file actions
31 lines (28 loc) · 1.31 KB
/
quickbase-cli.rb
File metadata and controls
31 lines (28 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class QuickbaseCli < Formula
desc "A Command Line Interface (CLI) to manage your Quickbase applications."
homepage "https://github.com/QuickBase/quickbase-cli"
version "0.2.7"
license "MIT"
if OS.mac? && Hardware::CPU.intel?
url "https://github.com/QuickBase/quickbase-cli/releases/download/v0.2.7/quickbase-cli_0.2.7_Darwin_x86_64.tar.gz"
sha256 "ca6613aae02aa081a8119a0cd502f411edfe80a8ca3a020b8a9341569130b567"
end
if OS.mac? && Hardware::CPU.arm?
url "https://github.com/QuickBase/quickbase-cli/releases/download/v0.2.7/quickbase-cli_0.2.7_Darwin_arm64.tar.gz"
sha256 "3cb8b388c7ce7a09f4c42cd7315dddeab56b69b7c7b65aee09daaff74bdd4feb"
end
if OS.linux? && Hardware::CPU.intel?
url "https://github.com/QuickBase/quickbase-cli/releases/download/v0.2.7/quickbase-cli_0.2.7_Linux_x86_64.tar.gz"
sha256 "a75fa28490bd4316554b127bab64dd1ae3b7564462fa87cdfd3a5256e3da43bb"
end
if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/QuickBase/quickbase-cli/releases/download/v0.2.7/quickbase-cli_0.2.7_Linux_arm64.tar.gz"
sha256 "eec23ef700fd8bfa73f10a4186939b4fa4b2355837b5c5678ccc4ae4143d4e2b"
end
def install
bin.install "quickbase-cli"
end
end