Skip to content

Instantly share code, notes, and snippets.

View ytensor42's full-sized avatar
:octocat:
Open

Han Cho ytensor42

:octocat:
Open
  • Ansolute
  • SF Bayarea
View GitHub Profile
@jstorimer
jstorimer / tclient.rb
Created June 25, 2013 21:09
These scripts were the result of the "Faster Rails test runs...with Unix!" screencast at https://www.youtube.com/watch?v=RSehcT4MnRM.
#!/usr/bin/env ruby
require 'socket'
test_file = ARGV[0]
socket = UNIXSocket.new('testing.sock')
socket.write(test_file)
socket.close_write