require 'rake/testtask' module Henry class Task # The Henry Task implementation for MiniTest class MiniTestTask < RakeTask # The temporary output file path for the MiniTest execution. OUT_PATH = 'minitest.out' # The reports path template. REPORTS_DIR = '.henry/reports/minitest' # The Minitest Rake Application name. # # @return [String] the rake application name. APPLICATION_NAME = 'minitest' def application_name APPLICATION_NAME end def out_path OUT_PATH end # Configures the Task. # # @param [Hash] params the task params. def configure(params, extended_context={}) File.open(OUT_PATH, 'w') { |f| } pattern = params['pattern'] || './spec{,/*/**}/*_spec.rb' format = params['format'] || 'SpecReporter' File.open("preconfig.rb", 'w') do |f| f.write <