.travis.yml 512 B

123456789101112131415161718192021222324
  1. ---
  2. branches:
  3. only:
  4. - master
  5. language: ruby
  6. script: "bundle exec rake --rakefile $PWD/.travis/Rakefile spec SPEC_OPTS='--format documentation'"
  7. rvm:
  8. - 1.9.3
  9. - 2.0.0
  10. gemfile: .travis/Gemfile
  11. env:
  12. matrix:
  13. - PUPPET_GEM_VERSION="~> 2.7.0"
  14. - PUPPET_GEM_VERSION="~> 3.0"
  15. matrix:
  16. exclude:
  17. - rvm: 1.9.3
  18. env: PUPPET_GEM_VERSION="~> 2.7.0"
  19. gemfile: .travis/Gemfile
  20. - rvm: 2.0.0
  21. env: PUPPET_GEM_VERSION="~> 2.7.0"
  22. gemfile: .travis/Gemfile
  23. notifications:
  24. email: false