-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsling.rb
27 lines (23 loc) · 860 Bytes
/
sling.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 Sling < Formula
desc "Data Integration made simple, from the command line. Extract and load data from popular data sources to destinations with high performance and ease."
homepage "https://slingdata.io/"
version "1.4.3"
depends_on :macos
on_intel do
url "https://github.com/slingdata-io/sling-cli/releases/download/v1.4.3/sling_darwin_amd64.tar.gz"
sha256 "784ae4a2e30f4e716486ee657a3a52f126d95af52b70280d9f4d1bf7b1edc350"
def install
bin.install "sling"
end
end
on_arm do
url "https://github.com/slingdata-io/sling-cli/releases/download/v1.4.3/sling_darwin_arm64.tar.gz"
sha256 "da431c67a0e3a7b49c77405ab39320a6d0fdce526d4a7e5eceb62459d76ef5d5"
def install
bin.install "sling"
end
end
end