-
Notifications
You must be signed in to change notification settings - Fork 0
/
jqplay.rb
31 lines (26 loc) · 879 Bytes
/
jqplay.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Jqplay < Formula
desc "Local playground for jq"
homepage "https://github.com/jittering/jqplay"
version "0.8.1"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/jittering/jqplay/releases/download/v0.8.1/jqplay_0.8.1_Darwin_x86_64"
sha256 "a5ed79d57da6ed5bf04eb8d1dcc4fdafb90e16e607754eba80c54d291df42a05"
def install
bin.install "jqplay_0.8.1_Darwin_x86_64" => "jqplay"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/jittering/jqplay/releases/download/v0.8.1/jqplay_0.8.1_Linux_x86_64"
sha256 "5798f24a10e37f6c146eecd756eb6dcb1518defac8aa1b81b84e03579718aa78"
def install
bin.install "jqplay_0.8.1_Linux_x86_64" => "jqplay"
end
end
end
end