Check if bundler is in wrapper path, excluding global gemset.

This commit is contained in:
Kees Klerk
2015-12-14 14:02:58 +01:00
parent 247ff36d1d
commit 2615824a7c
2 changed files with 16 additions and 4 deletions

View File

@@ -45,3 +45,8 @@ script:
| grep -q '2'
&& (echo 'Really deleted ruby test: pass' && exit 0)
|| (echo 'Really deleted ruby test: fail' && exit 1)
- >
ls ~/.rvm/wrappers/default/
| grep -q 'bundler'
&& (echo 'Bundler symlinked on system path test: pass' && exit 0)
|| (echo 'Bundler symlinked on system path test: fail' && exit 1)