Sha256: fc0fe1ceadd187934bc993e10c8c7977b4648eb6a6988a1403cec5f3f6b532db

Contents?: true

Size: 243 Bytes

Versions: 2

Compression:

Stored size: 243 Bytes

Contents

#!/bin/bash

source ~/.zshrc

bundle exec rubocop -c .rubocop.yml
if [ ! $? -eq 0 ]; then
echo 'rubocop detected issues!'
exit 1
fi

bundle exec rake spec
if [ ! $? -eq 0 ]; then
echo 'rspec did not run successfully, commit aborted'
exit 1
fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
media-runner-1.0.3 bin/check
media-runner-1.0.2 bin/check