diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2013-12-29 15:05:35 +0100 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2013-12-29 15:54:51 +0100 |
commit | 15e2eb42a7b1c251defd088ac65a89f152a307f6 (patch) | |
tree | cb27d1e6070a01d7380f0d56475c35394e5d4b99 | |
parent | 126dc47665c65cd129967cbd8a5926dddd0aa514 (diff) | |
download | rails-15e2eb42a7b1c251defd088ac65a89f152a307f6.tar.gz rails-15e2eb42a7b1c251defd088ac65a89f152a307f6.tar.bz2 rails-15e2eb42a7b1c251defd088ac65a89f152a307f6.zip |
Install bundle gems to the system not to vendor/bundle
Rubinius has problems with bundling when shared gems are disabled (ie.
when --path or --deployhment is used). There is no real reason to
install it with --path on TravisCI, so I'm dropping it.
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index dd1d911b63..303c838693 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ script: 'ci/travis.rb' before_install: - travis_retry gem install bundler - "rvm current | grep 'jruby' && export AR_JDBC=true || echo" +install: "bundle install --without test" rvm: - 1.9.3 - 2.0.0 |