From 36df5ee6e4f45fe0349663e8bdcc14ae604863ed Mon Sep 17 00:00:00 2001 From: erwanlr Date: Thu, 23 Jul 2015 14:15:46 +0100 Subject: [PATCH] Comments debug statement --- lib/common/common_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/common_helper.rb b/lib/common/common_helper.rb index f51a2517..82f40516 100644 --- a/lib/common/common_helper.rb +++ b/lib/common/common_helper.rb @@ -60,7 +60,7 @@ def require_files_from_directory(absolute_dir_path, files_pattern = '*.rb') # Files in the root dir are loaded first, then those in the subdirectories files.sort_by { |file| [file.count('/'), file] }.each do |f| f = File.expand_path(f) - puts "require #{f}" # Used for debug + # puts "require #{f}" # Used for debug require f end end