forked from thoughtbot/laptop
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby
More file actions
29 lines (20 loc) · 1.03 KB
/
ruby
File metadata and controls
29 lines (20 loc) · 1.03 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
#!/bin/sh
echo "Installing Bundler to build gem dependencies ..."
gem install bundler -v '~> 1.2.0.rc.2' --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 mysql2 gem to talk to MySQL databases ..."
gem install mysql2 --no-rdoc --no-ri
echo "Installing the pg gem to talk to Postgres databases ..."
gem install pg --no-rdoc --no-ri
echo "Installing the mongodb gem to talk to MongoDB databases ..."
gem install mongodb --no-rdoc --no-ri
echo "Installing the foreman gem for serving your Rails apps in development mode ..."
gem install foreman --no-rdoc --no-ri
echo "Installing the capistrano gem, a good way to deploy your apps ..."
gem install capistrano --no-rdoc --no-ri
echo "Installing the cocoapods gem, a good way to manage dependencies in Objective-C projects..."
gem install cocoapods --no-rdoc --no-ri
pod setup