aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/longboat/raiders.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/longboat/raiders.rb b/lib/longboat/raiders.rb
index f907f01..cd93858 100644
--- a/lib/longboat/raiders.rb
+++ b/lib/longboat/raiders.rb
@@ -15,9 +15,7 @@ module Longboat
cname = reqname.split('_').map(&:capitalize).join
require "#{dir}/#{reqname}"
- raider = Kernel.const_get(cname).new(@collector, raider_config)
- raider.configure! if raider.respond_to?(:configure!)
- @raiders[reqname] = raider
+ @raiders[reqname] = Kernel.const_get(cname).new(@collector, raider_config)
end
end
end