From a260b6f6b0ec0a826600cd9ea21b73cd33a16c87 Mon Sep 17 00:00:00 2001 From: Adam Ochonicki Date: Sat, 6 Jul 2013 11:28:07 -0400 Subject: [PATCH] Bundler ~> 1.3.0 check Fixes #79 --- script/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 29c729b..1be29a0 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -5,9 +5,9 @@ set -e # FIX: only sudo if gem home isn't writable -(/usr/bin/gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) || { +(/usr/bin/gem spec bundler -v '~> 1.3.0' > /dev/null 2>&1) || { /usr/bin/sudo -p "Need to install Bundler for system ruby, password for sudo: " \ - /usr/bin/gem install bundler -v '~> 1.2.0' --no-rdoc --no-ri + /usr/bin/gem install bundler -v '~> 1.3.0' --no-rdoc --no-ri } # We don't want old config hanging around.