-
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.0"
depends_on :macos
on_intel do
url "https://github.com/slingdata-io/sling-cli/releases/download/v1.4.0/sling_darwin_amd64.tar.gz"
sha256 "3ce986d3501c993d06895d74d5127f0ec8b9e249cab4ee4e5c9e81df73a2008d"
def install
bin.install "sling"
end
end
on_arm do
url "https://github.com/slingdata-io/sling-cli/releases/download/v1.4.0/sling_darwin_arm64.tar.gz"
sha256 "937457fc74ffd3ca9da1bd7a9a39d18b570c142b2f46f4e6b5b18522e6b63733"
def install
bin.install "sling"
end
end
end