-
Notifications
You must be signed in to change notification settings - Fork 0
/
oathkeeper.rb
55 lines (47 loc) · 1.77 KB
/
oathkeeper.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
52
53
54
55
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Oathkeeper < Formula
desc ""
homepage "https://www.ory.sh"
version "0.38.19-beta.1"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/ory/oathkeeper/releases/download/v0.38.19-beta.1/oathkeeper_0.38.19-beta.1_macOS_64-bit.tar.gz"
sha256 "93216de735e83113c9dda1bb82b72a628437a3f4ca931da0908b69fc85a19c6d"
def install
bin.install "oathkeeper"
end
end
if Hardware::CPU.arm?
url "https://github.com/ory/oathkeeper/releases/download/v0.38.19-beta.1/oathkeeper_0.38.19-beta.1_macOS_arm64.tar.gz"
sha256 "eec5f007a139c918068de878229e816f271b898d7dfac11201dd4f8fa12173b2"
def install
bin.install "oathkeeper"
end
end
end
on_linux do
if Hardware::CPU.arm? && !Hardware::CPU.is_64_bit?
url "https://github.com/ory/oathkeeper/releases/download/v0.38.19-beta.1/oathkeeper_0.38.19-beta.1_linux_armv6.tar.gz"
sha256 "10d38fa61fefe3f54dca1608417872ad4f07410f7bee30bdf7137cd6ea398f34"
def install
bin.install "oathkeeper"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/ory/oathkeeper/releases/download/v0.38.19-beta.1/oathkeeper_0.38.19-beta.1_linux_arm64.tar.gz"
sha256 "9968be95dda1f4e1d2d941615e02a4102394c4b861f2e76f0829693a181b75ea"
def install
bin.install "oathkeeper"
end
end
if Hardware::CPU.intel?
url "https://github.com/ory/oathkeeper/releases/download/v0.38.19-beta.1/oathkeeper_0.38.19-beta.1_linux_64-bit.tar.gz"
sha256 "16b5b42c637df4b27ca28e2cf5a16dbbc6614c64299c69a384550760a1706069"
def install
bin.install "oathkeeper"
end
end
end
end