37 lines
782 B
Ruby
37 lines
782 B
Ruby
require "autospec/rspec_runner"
|
|
|
|
module Autospec
|
|
|
|
class SimpleRunner < RspecRunner
|
|
|
|
def run(specs)
|
|
puts "Running Rspec: " << specs
|
|
# kill previous rspec instance
|
|
abort
|
|
# we use our custom rspec formatter
|
|
args = ["-r", "#{File.dirname(__FILE__)}/formatter.rb",
|
|
"-f", "Autospec::Formatter", specs.split].flatten.join(" ")
|
|
# launch rspec
|
|
@pid = Process.spawn({"RAILS_ENV" => "test"}, "bundle exec rspec #{args}")
|
|
_, status = Process.wait2(@pid)
|
|
status.exitstatus
|
|
end
|
|
|
|
def abort
|
|
if @pid
|
|
Process.kill("INT", @pid) rescue nil
|
|
while (Process.getpgid(@pid) rescue nil)
|
|
sleep 0.001
|
|
end
|
|
@pid = nil
|
|
end
|
|
end
|
|
|
|
def stop
|
|
abort
|
|
end
|
|
|
|
end
|
|
|
|
end
|