Sha256: ce915537a062c7cf6e1a6145e1d668d8a084b3d1191ab7c7af8ce62e8a25f3ed

Contents?: true

Size: 1.02 KB

Versions: 11

Compression:

Stored size: 1.02 KB

Contents

language: ruby
cache: bundler

# For ruby compatibility, we test the highest and lowest minor versions only.
# For example, if our gemspec says `required_ruby_version = ">= 2.3.0"`, and
# ruby 2.5.0 has just been released, then we test 2.3 and 2.5, but not 2.4.
rvm:
  - 2.3.8
  - 2.4.5
  - 2.5.3

env:
  global:
    - TRAVIS=true

# We want to use `sudo: false` because the container infrastructure is supposed
# to be faster, but Travis is having issues with containers lately ..
#
# > No output has been received in the last 10m0s
#
# .. and they recommend we use the VM infrastructure (`sudo: required`) in
# the meantime.
sudo: required

before_install:
  - gem update bundler

gemfile:
  - gemfiles/ar_4.2.gemfile
  - gemfiles/ar_5.1.gemfile
  - gemfiles/ar_5.2.gemfile
matrix:
  exclude:
    # optimization: don't test intermediate rubies (see above)
    - rvm: 2.4.5
      gemfile: gemfiles/ar_4.2.gemfile
    - rvm: 2.4.5
      gemfile: gemfiles/ar_5.1.gemfile
    - rvm: 2.4.5
      gemfile: gemfiles/ar_5.2.gemfile
  fast_finish: true

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
twitter_friendly-2.0.1.pre.alpha .travis.yml
twitter_friendly-2.0.0.pre.alpha .travis.yml
twitter_friendly-1.2.3 .travis.yml
twitter_friendly-1.2.2 .travis.yml
twitter_friendly-1.2.1 .travis.yml
twitter_friendly-1.2.0 .travis.yml
twitter_friendly-1.1.0 .travis.yml
twitter_friendly-1.0.0 .travis.yml
twitter_friendly-0.3.0 .travis.yml
twitter_friendly-0.2.1 .travis.yml
twitter_friendly-0.2.0 .travis.yml