forked from youngkidwarrior/sendapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
25 lines (19 loc) · 720 Bytes
/
Brewfile
File metadata and controls
25 lines (19 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Tempting to include our SDKs, but they're not really "applications"
# brew "bun"
# brew "node@20"
CI = ENV["CI"].present?
puts "Installing applications... (this may take a while) CI=#{CI}"
# install tools if not present
brew "jq" unless system "jq --version"
brew "yj" unless system "yj -v"
brew "tilt" unless system "tilt version"
brew "nss" unless system "nss-config --version"
brew "sqlfluff" unless CI or system "sqlfluff --version"
brew "postgresql" unless system "psql --version"
brew "gnu-sed" unless system "gsed --version"
brew "direnv" unless system "direnv --version"
brew "temporal" unless system "temporal --version"
unless system "maestro --version"
tap "mobile-dev-inc/tap"
brew "maestro"
end