-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathns.rb
More file actions
54 lines (47 loc) · 1.69 KB
/
ns.rb
File metadata and controls
54 lines (47 loc) · 1.69 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
47
48
49
50
51
52
53
54
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Ns < Formula
desc "Developer platform with a unified experience from development to production."
homepage "https://namespacelabs.com/"
version "0.0.491"
on_macos do
if Hardware::CPU.intel?
url "https://get.namespace.so/packages/ns/v0.0.491/ns_0.0.491_darwin_amd64.tar.gz"
sha256 "dfd4109edf938467dedd02c9474ca36514d6cacc69bc0b8a129ada75070abc1e"
define_method(:install) do
bin.install "ns"
end
end
if Hardware::CPU.arm?
url "https://get.namespace.so/packages/ns/v0.0.491/ns_0.0.491_darwin_arm64.tar.gz"
sha256 "832b7951365a41821a9f89443e4d7f4a8eec4e85a6e0b914ee487e4436cae119"
define_method(:install) do
bin.install "ns"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://get.namespace.so/packages/ns/v0.0.491/ns_0.0.491_linux_amd64.tar.gz"
sha256 "ecacfd434696625ef39c9ee9b2749d8467a5ba8dcce1f064458981ce63250680"
define_method(:install) do
bin.install "ns"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://get.namespace.so/packages/ns/v0.0.491/ns_0.0.491_linux_arm64.tar.gz"
sha256 "d09f20f662f2d1013e89b5b3e3cd1ca596921c4b0b976a01ef129b94d9f52e58"
define_method(:install) do
bin.install "ns"
end
end
end
def caveats
<<~EOS
Note: ns collects usage telemetry. This data helps us build a better
platform for you. You can learn more at https://namespace.so/telemetry.
Check out our examples at https://namespace.so/docs#examples to get started.
EOS
end
end