28 lines
384 B
YAML
28 lines
384 B
YAML
language: ruby
|
|
rvm:
|
|
- 1.9.2
|
|
- 1.9.3
|
|
- 2.0.0
|
|
- 2.1.0
|
|
- 2.1.1
|
|
- 2.1.2
|
|
- 2.1.3
|
|
- 2.1.4
|
|
- 2.1.5
|
|
- 2.2.0
|
|
- 2.2.1
|
|
- 2.2.2
|
|
before_install:
|
|
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
|
script: bundle exec rspec
|
|
notifications:
|
|
email:
|
|
- team@wpscan.org
|
|
matrix:
|
|
allow_failures:
|
|
- rvm: 1.9.2
|
|
# do not build gh-pages branch
|
|
branches:
|
|
except:
|
|
- gh-pages
|