Created
September 12, 2014 15:23
-
-
Save limhoff-r7/23af86f508558b94642c to your computer and use it in GitHub Desktop.
Metasploit .travis.yml for all rubies with specs and metasploit-yard's yard task that exits non-zero when there is undocumented code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env: | |
matrix: | |
- RAKE_TASK=spec | |
language: ruby | |
matrix: | |
# documentation coverage is not influenced by ruby implementation, so only run once | |
include: | |
- rvm: 2.1 | |
env: RAKE_TASK=yard | |
rvm: | |
- '1.9.3' | |
- '2.0' | |
- '2.1' | |
- 'ruby-head' | |
- 'jruby-19mode' | |
- 'rbx-2.2' | |
script: "bundle exec rake $RAKE_TASK" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment