forked from thoughtbot/laptop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mac
executable file
·59 lines (43 loc) · 2 KB
/
mac
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
#!/usr/bin/env zsh
echo "Checking for SSH key, generating one if it doesn't exist ..."
[[ -f ~/.ssh/id_rsa.pub ]] || ssh-keygen -t rsa
echo "Copying public key to clipboard. Paste it into your Github account ..."
[[ -f ~/.ssh/id_rsa.pub ]] && cat ~/.ssh/id_rsa.pub | pbcopy
open https://github.com/account/ssh
echo "Installing RVM (Ruby Version Manager) ..."
curl -L https://get.rvm.io | bash -s stable --ruby
echo "
# RVM
[[ -s '/Users/`whoami`/.rvm/scripts/rvm' ]] && source '/Users/`whoami`/.rvm/scripts/rvm'" >> ~/.zshrc
source ~/.zshrc
zsh < <(curl -s https://raw.github.com/MarcoSero/The-Setup/master/ruby)
echo "Installing Homebrew, a good OS X package manager ..."
ruby <(curl -fsS https://raw.github.com/mxcl/homebrew/go)
brew update
echo "Put Homebrew location earlier in PATH ..."
echo "
# recommended by brew doctor
export PATH='/usr/local/bin:$PATH'" >> ~/.zshrc
source ~/.zshrc
echo "Installing MySQL, the most popular RDBMS ..."
brew install mysql
echo "Installing Postgres, a good open source relational database ..."
brew install postgres --no-python
echo "Installing MongoDB, a very good NoSQL DBMS ..."
brew install mongodb
echo "Installing ack, a good way to search through files ..."
brew install ack
echo "Installing tmux, a good way to save project state and switch between projects ..."
brew install tmux
echo "Installing reattach-to-user-namespace, for copy-paste and RubyMotion compatibility with tmux ..."
brew install reattach-to-user-namespace
echo "Installing ImageMagick, good for cropping and re-sizing images ..."
brew install imagemagick
echo "Installing QT, used by Capybara Webkit for headless Javascript integration testing ..."
brew install qt
zsh < <(curl -s https://raw.github.com/MarcoSero/The-Setup/master/heroku)
echo -n "Your git name: "
git config --global user.name
echo -n "Your git email: "
git config --global user.email
echo "Change these with \ngit config --global user.name \"Your Name\" \ngit config --global user.email [email protected]"