From c9e3a51fdf167d7e6521bf34206b38a0eb66d5b3 Mon Sep 17 00:00:00 2001 From: Greg Lazarev Date: Fri, 8 Mar 2013 10:50:23 -0800 Subject: [PATCH] Update to the latest bundler version There was an issue where Travis build was erring because the bundler version was 1.2.3, and we explicitly upgrade rubygems via travis.yml. Thus, the result was that rubygems 2.0 is no longer compatible with older bundler versions. Thus let's always grab the latest version of bundler for Travis builds. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 44866cb6c..d7fe75d97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ rvm: - 1.9.3 before_install: - gem update --system + - gem update bundler before_script: - "bundle exec rake db:migrate" gemfile: