forked from thoughtbot/laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby
35 lines (24 loc) · 1.06 KB
/
ruby
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
#!/usr/bin/env bash
echo "Installing Ruby 1.9.3 stable and making it the default Ruby ..."
rbenv install 1.9.3-p194
rbenv rehash
rbenv global 1.9.3-p194
echo "Installing Bundler for managing Ruby libraries ..."
gem install bundler --no-rdoc --no-ri
echo "Installing Rails to write and run web applications ..."
gem install rails --no-rdoc --no-ri
echo "Installing the Heroku gem to interact with the http://heroku.com API ..."
gem install heroku --no-rdoc --no-ri
echo "Installing the Taps gem to push and pull SQL databases between development, staging, and production environments ..."
gem install taps --no-rdoc --no-ri
echo "Installing the pg gem to talk to Postgres databases ..."
gem install pg --no-rdoc --no-ri
echo "Installing vagrant ..."
gem install vagrant --no-rdoc --no-ri
echo "Installing capistrano ..."
gem install capistrano --no-rdoc --no-ri
echo "Installing capistrano-ext ..."
gem install capistrano-ext --no-rdoc --no-ri
echo "Installing railsless-deploy ..."
gem install railsless-deploy --no-rdoc --no-ri
rbenv rehash