Flowdock
load_heckle_runner(heckle) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/options.rb, line 204
      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
Register or log in to add new notes.