class ParallelTests::CLI
def load_runner(type)
def load_runner(type) require "parallel_tests/#{type}/runner" klass_name = "ParallelTests::#{type.capitalize.sub("Rspec", "RSpec")}::Runner" klass_name.split('::').inject(Object) { |x, y| x.const_get(y) } end