-
Notifications
You must be signed in to change notification settings - Fork 0
/
crossplane-docs.rb
51 lines (44 loc) · 1.6 KB
/
crossplane-docs.rb
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class CrossplaneDocs < Formula
desc "XDocs generator for Crossplane"
homepage "https://github.com/Kavinraja-G/crossplane-docs/"
version "0.1.3"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/Kavinraja-G/crossplane-docs/releases/download/v0.1.3/crossplane-docs_v0.1.3_darwin_amd64.tar.gz"
sha256 "6ac642dd55847f5d6f6b0b6f6758c3ae365c9d9a218a5a3c1398714d6920e477"
def install
bin.install "crossplane-docs"
end
end
if Hardware::CPU.arm?
url "https://github.com/Kavinraja-G/crossplane-docs/releases/download/v0.1.3/crossplane-docs_v0.1.3_darwin_arm64.tar.gz"
sha256 "95542594610376bcd0830a0c64a30771b08166851c6a07ec73a024bd77db2f1f"
def install
bin.install "crossplane-docs"
end
end
end
on_linux do
if Hardware::CPU.intel?
if Hardware::CPU.is_64_bit?
url "https://github.com/Kavinraja-G/crossplane-docs/releases/download/v0.1.3/crossplane-docs_v0.1.3_linux_amd64.tar.gz"
sha256 "4a87024a409e1c7f2c838817743a7abe4348bdd84ca1135bc16ff25033634740"
def install
bin.install "crossplane-docs"
end
end
end
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/Kavinraja-G/crossplane-docs/releases/download/v0.1.3/crossplane-docs_v0.1.3_linux_arm64.tar.gz"
sha256 "171f0410b7a2a815c129ceebd2397ab89aabb4af5c57d6046110a7e65f9bbe70"
def install
bin.install "crossplane-docs"
end
end
end
end
end