-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathBrewfile
More file actions
30 lines (22 loc) · 726 Bytes
/
Brewfile
File metadata and controls
30 lines (22 loc) · 726 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
25
26
27
28
29
30
# Check for existing rbenv, otherwise install ruby-install and chruby
brew 'ruby-install' unless system 'command -v rbenv > /dev/null 2>&1'
brew 'chruby' unless system 'command -v rbenv > /dev/null 2>&1'
# Check for existing ruby-install, otherwise install rbenv
brew 'rbenv' unless system 'command -v ruby-install > /dev/null 2>&1'
# PaaS CLI
tap 'heroku/brew'
brew 'heroku'
# Active Storage PDF previews
cask 'xquartz'
brew 'mupdf'
brew 'poppler'
# Word DOCX uploads on Article form
brew 'pandoc'
# Database
brew 'postgresql@15'
# Overcommit hooks
brew 'yamllint'
# System tests
cask 'google-chrome' unless system 'test -d "/Applications/Google Chrome.app"'
# Entity relationship diagram (ERD)
brew 'graphviz'