File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # typed: false
2+ # frozen_string_literal: true
3+
4+ # This file was generated by GoReleaser. DO NOT EDIT.
5+ class EveractiveCli < Formula
6+ desc "CLI for the Everactive IoT Platform"
7+ homepage "https://everactive.com"
8+ version "0.4.2"
9+
10+ on_macos do
11+ if Hardware ::CPU . arm?
12+ url "https://github.com/everactive/everactive-cli/releases/download/v0.4.2/everactive-cli_Darwin_arm64.tar.gz"
13+ sha256 "3b74b89daef547f571d6cb18a85372a51d4b82622f37f42d5d2822574f5fc3fa"
14+
15+ def install
16+ bin . install "everactive-cli"
17+ end
18+ end
19+ if Hardware ::CPU . intel?
20+ url "https://github.com/everactive/everactive-cli/releases/download/v0.4.2/everactive-cli_Darwin_x86_64.tar.gz"
21+ sha256 "b44ed1807ba32d2caf50034c6b9a8ba2981268ec826c54b9c711e4cb12658e0f"
22+
23+ def install
24+ bin . install "everactive-cli"
25+ end
26+ end
27+ end
28+
29+ on_linux do
30+ if Hardware ::CPU . arm? && Hardware ::CPU . is_64_bit?
31+ url "https://github.com/everactive/everactive-cli/releases/download/v0.4.2/everactive-cli_Linux_arm64.tar.gz"
32+ sha256 "0e042dce17c0d482279aac023a445fdeb284646c082a4614213096d4639fd413"
33+
34+ def install
35+ bin . install "everactive-cli"
36+ end
37+ end
38+ if Hardware ::CPU . intel?
39+ url "https://github.com/everactive/everactive-cli/releases/download/v0.4.2/everactive-cli_Linux_x86_64.tar.gz"
40+ sha256 "3ff77013c8f1d26fcdcd54a9f0f3f02edf254dc6accc4b05b030da0dc88df969"
41+
42+ def install
43+ bin . install "everactive-cli"
44+ end
45+ end
46+ end
47+ end
You can’t perform that action at this time.
0 commit comments