Sha256: 7727a1e8107ccfd5dee56aff5b0d2adff684af41471f0f3acdc3350e40da5ff8

Contents?: true

Size: 869 Bytes

Versions: 5

Compression:

Stored size: 869 Bytes

Contents

# Send builds to container-based infrastructure
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
language: ruby
cache:
  - bundler
rvm:
  - 2.1.10
  - 2.2.8
  # Since the Travis Build Env does not recognize `2.3` alias yet
  # We need to specify the version precisely
  - 2.3.6
  - 2.4.3
  - 2.5.0
  - ruby-head
before_install:
# Need to install something extra to test JS
- npm install
# Bundler 1.16.1 and rubygems 2.7.3 got issue
# https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-354036443
- gem update --system
gemfile:
  - gemfiles/i18n_0_6.gemfile
  - gemfiles/i18n_0_7.gemfile
  - gemfiles/i18n_0_8.gemfile
  - gemfiles/i18n_0_9.gemfile
  - gemfiles/i18n_1_0.gemfile
matrix:
  fast_finish: true
  allow_failures:
    - rvm: ruby-head
notifications:
  webhooks: https://www.travisbuddy.com/
  on_success: never

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
i18n-js-3.0.10 .travis.yml
i18n-js-3.0.9 .travis.yml
i18n-js-3.0.8 .travis.yml
i18n-js-3.0.7 .travis.yml
i18n-js-3.0.6 .travis.yml