diff --git a/ruby b/ruby index 0a6c21d49..f71551d3e 100644 --- a/ruby +++ b/ruby @@ -1,6 +1,6 @@ echo "Installing Ruby 1.9.2 stable and making it the default Ruby ..." rvm install 1.9.2-p290 - rvm use 1.9.2-p290 --default + rvm use 1.9.2 --default echo "Installing Bundler for managing Ruby libraries ..." gem install bundler --no-rdoc --no-ri @@ -14,5 +14,5 @@ echo "Installing the Heroku gem to interact with the http://heroku.com API ..." 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 Ruby gems to talk to the databases ..." +echo "Installing the pg gem to talk to Postgres databases ..." gem install pg --no-rdoc --no-ri