Skip to content

Commit

Permalink
Upgrade Ruby and Bundler
Browse files Browse the repository at this point in the history
* Ruby 1.9.3 is working well for us on real apps in Heroku production.
* Bundler 1.2.0.rc2 provides a `ruby` directive that is becoming our
  standard for defining the Ruby version for the project.
  • Loading branch information
Dan Croak committed Aug 14, 2012
1 parent e0c721f commit 3ab4a01
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -37,7 +37,7 @@ What it sets up
* Postgres gem for talking to Postgres from Ruby
* Qt for headless JavaScript testing via Capybara Webkit
* Rails gem for writing web applications
* Ruby 1.9.2 stable for writing general-purpose code
* Ruby 1.9.3 stable for writing general-purpose code
* RVM for managing versions of the Ruby programming language
* SSH public key for authenticating with Github and Heroku
* Tmux for saving project state and switching between projects
Expand Down
9 changes: 6 additions & 3 deletions ruby
@@ -1,8 +1,11 @@
#!/bin/sh

echo "Installing Ruby 1.9.2 stable and making it the default Ruby ..."
rvm install 1.9.2-p290 --with-gcc=clang
rvm use 1.9.2 --default
echo "Installing Ruby 1.9.3 stable and making it the default Ruby ..."
rvm install 1.9.3 --with-gcc=clang
rvm use 1.9.3 --default

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
Expand Down

0 comments on commit 3ab4a01

Please sign in to comment.