class BenchmarkDriver::RubyInterface

def initialize(output: nil, runner: nil, repeat_count: 1)

Parameters:
  • runner (String, NilClass) --
  • output (String, NilClass) --
def initialize(output: nil, runner: nil, repeat_count: 1)
  @prelude = ''
  @loop_count = nil
  @jobs = []
  @config = BenchmarkDriver::Config.new
  @config.output_type = output.to_s if output
  @config.runner_type = runner.to_s if runner
  @config.repeat_count = Integer(repeat_count)
  @executables = []
end