Sha256: fdfe2d0505fd116bd4940194d8a21004c64a092f78cecdad98db02dd8c3a8262
Contents?: true
Size: 381 Bytes
Versions: 53
Compression:
Stored size: 381 Bytes
Contents
#!/usr/bin/env bash set +e EXIT_CODES=0 #Skip this for now until we can fix all the cop issues #echo "Analyzing ruby code with rubocop" #bundle exec gergich capture rubocop "bundle exec rubocop --fail-level autocorrect" #EXIT_CODES=$(($EXIT_CODES + $?)) echo 'Running ruby specs' bundle exec rspec EXIT_CODES=$(($EXIT_CODES + $?)) bundle exec gergich publish exit $EXIT_CODES
Version data entries
53 entries across 53 versions & 2 rubygems