lib/benchmark_driver/output.rb in benchmark_driver-0.10.11 vs lib/benchmark_driver/output.rb in benchmark_driver-0.10.12
- old
+ new
@@ -14,9 +14,10 @@
def find(type)
if type.include?(':')
raise ArgumentError.new("Output type '#{type}' cannot contain ':'")
end
+ require "benchmark_driver/output/#{type}" # for plugin
::BenchmarkDriver::Output.const_get(camelize(type), false)
end
private