Sha256: 7e23e3a0fd56034206991071c813fdc92013dddaf99ac64b970863f5f0c9fb22
Contents?: true
Size: 664 Bytes
Versions: 107
Compression:
Stored size: 664 Bytes
Contents
#!/bin/bash RAKETASK=$1 rm -rf ${WORKSPACE}/target/ rm -rf ${WORKSPACE}/.yarddoc/ rm -rf ${WORKSPACE}/doc/ mkdir -p ${WORKSPACE}/target/ bundle install --path vendor/bundle --binstubs bundle exec yard config load_plugins true bundle exec yardoc 'example/**/*.rb' 'example/**/*.feature' bundle exec rake yard cd ${WORKSPACE}/features bundle exec cuke_sniffer --out html ${WORKSPACE}/target/cuke_sniffer.html bundle exec rubocop ${WORKSPACE}/features/ --require rubocop/formatter/checkstyle_formatter --format Rubocop::Formatter::CheckstyleFormatter --no-color --silent --rails --out ${WORKSPACE}/target/checkstyle.xml cd ${WORKSPACE} bundle exec rake "${RAKETASK}"
Version data entries
107 entries across 98 versions & 2 rubygems