Sha256: 77c1c983b9f73d03d83d2d8a5bd8e4471be30a9237c3947da0c9b629d7bb0647

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

language: ruby
rvm:
  - 1.8.7
  - 1.9.3
  - '2.0'
  - '2.1'
  - jruby-19mode
env:
  - RAILS_VERSION='~> 2.3.0'
  # - RAILS_VERSION='~> 3.0.0' # conflicting adapters for postgresql and mysql2
  - RAILS_VERSION='~> 3.1.0'
  - RAILS_VERSION='~> 3.2.0'
  - RAILS_VERSION='~> 4.0.0'
  - RAILS_VERSION='~> 4.1.0'
script:
  if [ -n "$RUBOCOP" ]; then
    bundle exec rubocop
  ; else
    bundle exec rspec
  ; fi
before_install:
  - 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
matrix:
  fast_finish: true
  include:
    - env: RUBOCOP=true
      rvm: default
  exclude:
    - rvm: 1.8.7 # not supported by rails 4
      env: RAILS_VERSION='~> 4.0.0'
    - rvm: 1.8.7 # not supported by rails 4
      env: RAILS_VERSION='~> 4.1.0'
    - rvm: 2.0.0 # problems with iconv
      env: RAILS_VERSION='~> 2.3.0'
    - rvm: 2.1.0
      env: RAILS_VERSION='~> 2.3.0'
  allow_failures:
    - rvm: jruby-19mode

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dump-1.0.6 .travis.yml
dump-1.0.5 .travis.yml