forked from thoughtbot/laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmac
More file actions
executable file
·102 lines (73 loc) · 3.62 KB
/
Copy pathmac
File metadata and controls
executable file
·102 lines (73 loc) · 3.62 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env zsh
successfully() {
$* || (echo "\nfailed" 1>&2 && exit 1)
}
fancy_echo() {
echo "\n$1"
}
if -f /etc/zshenv; then
fancy_echo "Fix OSX zsh environment bug ..."
successfully sudo mv /etc/{zshenv,zshrc}
fi
fancy_echo "Install Homebrew, a good OS X package manager ..."
successfully ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go)
successfully brew update
if ! grep -qs "recommended by brew doctor" ~/.zshrc; then
fancy_echo "Put Homebrew location earlier in PATH ..."
successfully echo "\n# recommended by brew doctor" >> ~/.zshrc
successfully echo "export PATH='/usr/local/bin:$PATH'\n" >> ~/.zshrc
successfully source ~/.zshrc
fi
fancy_echo "Install Postgres, a good open source relational database ..."
successfully brew install postgres --no-python
successfully initdb /usr/local/var/postgres -E utf8
fancy_echo "Install Redis, a good key-value database ..."
successfully brew install redis
fancy_echo "Install The Silver Searcher (better than ack or grep) for searching the contents of files ..."
successfully brew install the_silver_searcher
fancy_echo "Install ctags, for indexing files for vim tab completion of methods, classes, variables ..."
successfully brew install ctags
fancy_echo "Install tmux, for saving project state and switching between projects ..."
successfully brew install tmux
fancy_echo "Install reattach-to-user-namespace, for copy-paste and RubyMotion compatibility with tmux ..."
successfully brew install reattach-to-user-namespace
fancy_echo "Install ImageMagick, for cropping and re-sizing images ..."
successfully brew install imagemagick
fancy_echo "Install QT, used by Capybara Webkit for headless Javascript integration testing ..."
successfully brew install qt
fancy_echo "Install watch, used to execute a program periodically and show the output ..."
successfully brew install watch
fancy_echo "Install rbenv for changing Ruby versions ..."
successfully brew install rbenv
if ! grep -qs "rbenv init" ~/.zshrc; then
successfully echo 'eval "$(rbenv init -)"' >> ~/.zshrc
fancy_echo "Enable shims and autocompletion ..."
successfully eval "$(rbenv init -)"
fi
source ~/.zshrc
fancy_echo "Install rbenv-gem-rehash so the shell automatically picks up binaries after installing gems with binaries..."
successfully brew install rbenv-gem-rehash
fancy_echo "Install ruby-build for installing Rubies ..."
successfully brew install ruby-build
fancy_echo "Install GNU Compiler Collection, a necessary prerequisite to installing Ruby ..."
successfully brew tap homebrew/dupes
successfully brew install apple-gcc42
fancy_echo "Install Ruby 1.9.3-p392 ..."
CC=gcc-4.2 successfully rbenv install 1.9.3-p392
fancy_echo "Set Ruby 1.9.3-p392 as global default Ruby ..."
successfully rbenv global 1.9.3-p392
successfully rbenv shell 1.9.3-p392
fancy_echo "Update to latest Rubygems version ..."
successfully gem update --system
fancy_echo "Install critical Ruby gems for Rails development ..."
successfully gem install bundler foreman pg rails thin --no-document
fancy_echo "Install GitHub CLI client ..."
successfully gem install hub --no-document
fancy_echo "Install Heroku CLI client ..."
successfully brew install heroku-toolbelt
fancy_echo "Install the heroku-config plugin for pulling config variables locally to be used as ENV variables ..."
successfully heroku plugins:install git://github.com/ddollar/heroku-config.git
if ! grep -qs "DO NOT EDIT BELOW THIS LINE" ~/.zshrc; then
fancy_echo "Prepare ~/.zshrc for http://github.com/thoughtbot/dotfiles ..."
successfully echo "# DO NOT EDIT BELOW THIS LINE\n" >> ~/.zshrc
fi