Skip to content

Instantly share code, notes, and snippets.

View ispyropoulos's full-sized avatar

Ilias Spyropoulos ispyropoulos

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ispyropoulos on github.
  • I am ispyrop (https://keybase.io/ispyrop) on keybase.
  • I have a public key whose fingerprint is 7C2B B093 6841 174B 9923 FB8E A62F 3CDF ECC0 926C

To claim this, I am signing this object:

@ispyropoulos
ispyropoulos / rspec_loop.sh
Created December 18, 2019 17:52
Run RSpec suite multiple times, but stop if there's a failure.
for i in `seq 50` ; do rspec spec ; [[ ! $? = 0 ]] && break ; done