#!/usr/bin/env ruby dir = File.dirname(__FILE__) $LOAD_PATH.unshift("#{dir}/../lib") require "screw_unit" spec_root_path = ARGV[0] || "./spec" implementation_root_path = ARGV[1] || "./public/javascripts" public_path = ARGV[2] || "./public" ScrewUnit::Server.run(spec_root_path, implementation_root_path, public_path)