Sha256: fc2d7aa2146222d63089ff1f49a5525bd6278585f381a6b6cdbab359c98cee13

Contents?: true

Size: 916 Bytes

Versions: 1

Compression:

Stored size: 916 Bytes

Contents

language: ruby
rvm:
  - '1.9.3-p551'
  - '2.2.10'
  - '2.3.8'
  - '2.4.6'
  - '2.5.5'
  - '2.6.3'
  - 'jruby-head'
script:
  - ./bundle exec appraisal rspec
before_install:
  - gem install bundler --version '< 2'
  - ruby -rrubygems -e 'puts "#!/bin/sh", %{bundle _#{Gem::Dependency.new("bundler", "< 2.0").to_spec.version}_ "$@"}' > bundle
  - chmod +x bundle
  - sudo /etc/init.d/postgresql stop
  - sudo /etc/init.d/postgresql start
  - mysql -e 'create database myapp_test;'
  - psql -c 'create database myapp_test;' -U postgres
  - cp .travis.database.yml spec/db/database.yml
install:
  - ./bundle install --jobs=3 --retry=3
  - ./bundle exec appraisal install --jobs=3 --retry=3
matrix:
  include:
    - env: RUBOCOP=✓
      rvm: '2.6.3'
      script: bundle exec rubocop
    - env: CHECK_RUBIES=✓
      rvm: '2.6.3'
      script: bundle exec travis_check_rubies
  allow_failures:
    - rvm: 'jruby-head'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dump-1.2.1 .travis.yml