Skip to content

Instantly share code, notes, and snippets.

@abrons
abrons / keybase.md
Created September 24, 2014 21:47
keybase.md

Keybase proof

I hereby claim:

  • I am abrons on github.
  • I am abrons (https://keybase.io/abrons) on keybase.
  • I have a public key whose fingerprint is 1165 69FE A131 C16A 45A7 CC9A 927B EB6C BD23 12CD

To claim this, I am signing this object:

@abrons
abrons / spec.rake
Created July 5, 2011 18:29 — forked from ragaskar/spec.rake
Kill spork when running rake spec (place in lib/tasks)
task :kill_spork do
spork_processes = `ps aux | grep spor[k] | awk '{print $2}'`.split("\n").map(&:to_i)
spork_processes.each do |pid|
Process.kill "QUIT", pid
end
end
task :spec => [:kill_spork, :cucumber]