| Class | CI::Reporter::ReportManager |
| In: |
lib/ci/reporter/report_manager.rb
|
| Parent: | Object |
# File lib/ci/reporter/report_manager.rb, line 10
10: def initialize(prefix)
11: @basedir = ENV['CI_REPORTS'] || File.expand_path("#{Dir.getwd}/#{prefix.downcase}/reports")
12: @basename = "#{@basedir}/#{prefix.upcase}"
13: FileUtils.mkdir_p(@basedir)
14: end