Sha256: 6faf76c3f548cbfd481bd79e26eede361063d16867a8b48a6b3170b8205b8836

Contents?: true

Size: 921 Bytes

Versions: 1

Compression:

Stored size: 921 Bytes

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: "bundle exec rspec"
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:
  allow_failures:
    - rvm: jruby-19mode
  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'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dump-1.0.4 .travis.yml