Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,21 @@ rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- 2.6

before_script:
- git config --global user.email "travis@travis.ci"
- git config --global user.name "Travis CI"

before_install:
- gem update --system
- gem install bundler
- |
export RVM_CURRENT=`rvm current|cut -c6-8`
if [ "${RVM_CURRENT}" == "2.2" ]; then
gem --version
else
gem update --system
fi
- gem install bundler:'< 2'

script:
- bundle exec rspec
Expand Down
9 changes: 7 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ environment:
- RUBY_FOLDER_VERSION: "22-x64"
- RUBY_FOLDER_VERSION: "23"
- RUBY_FOLDER_VERSION: "23-x64"

- RUBY_FOLDER_VERSION: "24"
- RUBY_FOLDER_VERSION: "24-x64"
- RUBY_FOLDER_VERSION: "25"
- RUBY_FOLDER_VERSION: "25-x64"
- RUBY_FOLDER_VERSION: "26"
- RUBY_FOLDER_VERSION: "26-x64"
matrix:
fast_finish: true

Expand Down Expand Up @@ -39,7 +44,7 @@ install:
- where gem

# Install latest Bundler to work around version issues
- gem install bundler --force
- gem install bundler:'< 2' --force
- where bundler

# Install ruby dependencies
Expand Down