This guide covers building a Let's Split v2. Order your parts and read over this guide while you wait.
- I2C isn't covered in this guide (yet), mostly because I didn't do it for my build.
| function zrun() { | |
| SPEC_FILE=$1 | |
| SPEC_LOG=/tmp/rspec.log | |
| if [ $SPEC_FILE ]; then | |
| rspec $SPEC_FILE 2>&1 | tee $SPEC_LOG | |
| else | |
| cat $SPEC_LOG | grep "^rspec" | cut -d ' ' -f 2 | xargs rspec 2>&1 | tee $SPEC_LOG | |
| fi | |
| } |