-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbrest.rb
27 lines (23 loc) · 912 Bytes
/
dbrest.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Dbrest < Formula
desc "dbREST is an API backend that you can put in front of your database. Ever wanted to spin up an API service in front of your Snowflake, MySQL or even SQLite database? Well, dbREST allows that!"
homepage "https:/github.com/dbrest-io/dbrest"
version "0.0.80"
depends_on :macos
on_intel do
url "https://github.com/dbrest-io/dbREST/releases/download/v0.0.80/dbrest_darwin_amd64.tar.gz"
sha256 "7932a3e69859c29d8ca5ead4eb7b68c324aa7f004e2d796e5610af3a75b94c16"
def install
bin.install "dbrest"
end
end
on_arm do
url "https://github.com/dbrest-io/dbREST/releases/download/v0.0.80/dbrest_darwin_arm64.tar.gz"
sha256 "ee8f1611f67cfc9233894bfee281e6f93193bd854dbee566d9d9613888b18ef9"
def install
bin.install "dbrest"
end
end
end