forked from thoughtbot/laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebian-derivative-packages
More file actions
41 lines (28 loc) · 1.5 KB
/
Copy pathdebian-derivative-packages
File metadata and controls
41 lines (28 loc) · 1.5 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
fancy_echo "Installing git, for source control management ..."
sudo aptitude install -y git
fancy_echo "Installing base ruby build dependencies ..."
sudo aptitude build-dep -y ruby1.9.3
fancy_echo "Installing libraries for common gem dependencies ..."
sudo aptitude install -y libxslt1-dev libcurl4-openssl-dev libksba8 libksba-dev libqtwebkit-dev libreadline-dev
fancy_echo "Installing sqlite3, for prototyping database-backed rails apps"
sudo aptitude install -y libsqlite3-dev sqlite3
fancy_echo "Installing Postgres, a good open source relational database ..."
sudo aptitude install -y postgresql postgresql-server-dev-all
fancy_echo "Installing Redis, a good key-value database ..."
sudo aptitude install -y redis-server
fancy_echo "Installing ctags, to index files for vim tab completion of methods, classes, variables ..."
sudo aptitude install -y exuberant-ctags
fancy_echo "Installing vim ..."
sudo aptitude install -y vim-gtk
fancy_echo "Installing tmux, to save project state and switch between projects ..."
sudo aptitude install -y tmux
fancy_echo "Installing ImageMagick, to crop and resize images ..."
sudo aptitude install -y imagemagick
fancy_echo "Installing watch, to execute a program periodically and show the output ..."
sudo aptitude install -y watch
fancy_echo "Installing curl ..."
sudo aptitude install -y curl
fancy_echo "Installing zsh ..."
sudo aptitude install -y zsh
fancy_echo "Installing node, to render the rails asset pipeline ..."
sudo aptitude install -y nodejs