private FilePath[] getRubyFiles(FilePath workspace, File buildRootDir, String relativePath, Launcher launcher) throws InterruptedException, IOException {
moveReportsToBuildRootDir(workspace, buildRootDir, launcher.getListener(), relativePath, "**/*.rb", true);
FilePath classesLocation = new FilePath(new File(buildRootDir, relativePath));
launcher.getListener().getLogger().println("searching ruby classes into: " + classesLocation.toURI().getPath());
return classesLocation.list("**/*.rb");
}
private String prettifyFilePath(String path, String rubyFilePath) {