-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
77 lines (56 loc) · 1.45 KB
/
Brewfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# About
# This is a brewfile. It is a manifest that homebrew can use to setup your dev environment. More on brew bundle here - https://github.com/Homebrew/homebrew-bundle
# To execute:
# cd/path-to-dotfiles-repo
# brew bundle
# Read more about these installations in our documentation:
# https://github.com/BackerKit/BackerKit/docs/setup_dev_environment.md
# https://github.com/BackerKit/BackerKit/docs/setup_dev_tools.md
# Dependencies Needed for BackerKit server and specs
# ===========
tap "homebrew/bundle"
tap "homebrew/core"
tap "homebrew/devel-only"
tap "homebrew/services"
tap "caskroom/cask"
brew "bash-git-prompt"
brew "chromedriver", restart_service: true
brew "direnv"
brew "git"
brew 'heroku'
brew "imagemagick@6"
brew "mas"
brew "postgresql", restart_service: true
brew "pow"
brew "rbenv"
brew "redis", restart_service: true
cask "google-chrome"
mas "Xcode", id: 497799835
# Developer quality of life tools
# ===========
tap 'homebrew/command-not-found'
tap 'homebrew/completions'
brew 'bash-completion'
brew 'brew-cask-completion'
brew 'bundler-completion'
brew 'gem-completion'
brew 'rails-completion'
brew 'rake-completion'
brew 'ruby-completion'
brew 'tmux'
cask 'atom'
cask 'firefox'
cask 'firefoxdeveloperedition'
cask 'github-desktop'
cask 'lastpass'
cask 'launchcontrol'
cask 'quicklook-csv'
cask 'quicklook-json'
cask 'quicklookei'
cask 'rubymine'
cask 'screenhero'
cask 'skitch'
cask 'slack'
cask 'subl'
cask 'sublime-text'
cask 'xtabulator'