method
load_heckle_runner
1.2.8 -
Show latest stable
- Class:
Spec::Runner::Options
load_heckle_runner(heckle)public
No documentation available.
# File lib/spec/runner/options.rb, line 233
def load_heckle_runner(heckle)
@format_options ||= [['silent', @output_stream]]
suffix = ([/mswin/, /java/].detect{|p| p =~ RUBY_PLATFORM} || Spec::Ruby.version.to_f == 1.9) ? '_unsupported' : ''
require "spec/runner/heckle_runner#{suffix}"
@heckle_runner = ::Spec::Runner::HeckleRunner.new(heckle)
end