Fix bundler caching in travis & Appveyor

- Point gems to vendor/bundle in travis.yml
 - Point Travis cache to vendor/bundle
 - Point Appveyor cache to vendor/bundle
This commit is contained in:
John Hamelink
2015-11-24 00:24:23 +00:00
parent aa4384839d
commit defd8d05c9
3 changed files with 9 additions and 6 deletions

View File

@@ -2,9 +2,6 @@ language: ruby
sudo: false
cache:
bundler: true
rvm:
- 1.9.3
- 2.0.0
@@ -12,8 +9,10 @@ rvm:
- ruby-head
- rbx-2
install:
- bundle install --retry=3
install: bundle install --path=vendor/bundle --retry=3 --jobs=3
cache:
directories:
- vendor/bundle
script:
- env CAPTURE_STDERR=${CAPTURE_STDERR:-false} bundle exec rake ci