-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogexplorer.rb
More file actions
46 lines (41 loc) · 1.56 KB
/
logexplorer.rb
File metadata and controls
46 lines (41 loc) · 1.56 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Logexplorer < Formula
desc "Log Explorer"
homepage "https://stackgen.com/"
version "1.59.1"
license "Apache License 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://releases.stackgen.com/binaries/logexplorer/v1.59.1/grafana-logexplorer-app_1.59.1_darwin_amd64.tar.gz"
sha256 "f6b0e10843aa62cb2d02b1aa87ff2746ee7674bc33de46a35b45fdeb43a1fb6c"
define_method(:install) do
bin.install "logexplorer"
end
end
if Hardware::CPU.arm?
url "https://releases.stackgen.com/binaries/logexplorer/v1.59.1/grafana-logexplorer-app_1.59.1_darwin_arm64.tar.gz"
sha256 "60390330ffe42db7a81005e331bf2e8ad0321770e402592a29ddb40207bcbb11"
define_method(:install) do
bin.install "logexplorer"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/logexplorer/v1.59.1/grafana-logexplorer-app_1.59.1_linux_amd64.tar.gz"
sha256 "bbb1fa57924071bb6b450d7e3455876f9f69bcd80f1751cccd93392320d41cfd"
define_method(:install) do
bin.install "logexplorer"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/logexplorer/v1.59.1/grafana-logexplorer-app_1.59.1_linux_arm64.tar.gz"
sha256 "916d9407b34beb2e6ae75b1dd80cc40c6a31d45ce97ad2038fb1ec5b8cbd520e"
define_method(:install) do
bin.install "logexplorer"
end
end
end
end