File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,24 +5,33 @@ environment:
55 matrix :
66 - RUBY_VERSION : " 21-x64"
77 PLATFORM : " x64"
8+ USE_BUNDLER_2XX : " no"
89 - RUBY_VERSION : " 21"
910 PLATFORM : " Win32"
11+ USE_BUNDLER_2XX : " no"
1012 - RUBY_VERSION : " 22-x64"
1113 PLATFORM : " x64"
14+ USE_BUNDLER_2XX : " no"
1215 - RUBY_VERSION : " 22"
1316 PLATFORM : " Win32"
17+ USE_BUNDLER_2XX : " no"
1418 - RUBY_VERSION : " 200-x64"
1519 PLATFORM : " x64"
20+ USE_BUNDLER_2XX : " no"
1621 - RUBY_VERSION : " 200"
1722 PLATFORM : " Win32"
23+ USE_BUNDLER_2XX : " no"
1824
1925install :
2026
2127 - SET PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
2228 - if [%PLATFORM%] == [x64] set DEVKIT=C:\Ruby23-x64\DevKit
2329 - if [%PLATFORM%] == [Win32] set DEVKIT=C:\Ruby23\DevKit
2430 - " %DEVKIT%\\ devkitvars.bat"
25- - gem install bundler --no-rdoc --no-ri
31+ - if [ $USE_BUNDLER_2XX == 'yes' ];
32+ then gem install bundler --no-document;
33+ else gem install bundler --no-document -v '~> 1.6';
34+ fi
2635 - bundler env
2736 - bundle install
2837
@@ -49,7 +58,7 @@ build_script:
4958 - gem install symengine-0.1.0.gem --verbose
5059
5160test_script :
52- - gem install gem-path --no-ri --no-rdoc
61+ - gem install gem-path --no-document
5362 - gem path symengine > temp.txt
5463 - set /p RUBY_GEM_DIR=<temp.txt
5564 # Test ruby gem
You can’t perform that action at this time.
0 commit comments